/
githubmirror
/
libmicrohttpd
Обзор
Документация
Войти
/
githubmirror
/
libmicrohttpd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.9.74
src/lib/base64.h
17 строк
338 B
Christian Grothoff
-fix tests for libmagic (and uncrustify indentation)
08 дек 2021, 16:11
Не верифицирован
08 дек 2021, 16:11
dbe1d76
Код
Авторство
О чём код?
/* * This code implements the BASE64 algorithm. * This code is in the public domain; do with it what you wish. * * @file base64.c * @brief This code implements the BASE64 algorithm * @author Matthieu Speder */ #ifndef BASE64_H #define BASE64_H #include "platform.h" char * BASE64Decode (const char *src); #endif /* !BASE64_H */