mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
Lua Server Pages may now call the EncodeBase64() and DecodeBase64() functions should they wish to do things like emit embeded data URIs See #97
11 lines
358 B
C
11 lines
358 B
C
#ifndef COSMOPOLITAN_NET_HTTP_BASE64_H_
|
|
#define COSMOPOLITAN_NET_HTTP_BASE64_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
char *EncodeBase64(const void *, size_t, size_t *);
|
|
void *DecodeBase64(const char *, size_t, size_t *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_NET_HTTP_BASE64_H_ */
|