File: base64.h

package info (click to toggle)
jo 1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: ansic: 1,914; sh: 566; makefile: 60; exp: 42
file content (9 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#ifndef BASE64_H_GUARD
#define BASE64_H_GUARD

#include <stddef.h>

char* base64_encode(const void* buf, size_t size);
void* base64_decode(const char* s, size_t *data_len);

#endif