Move base64_decode into its own source file.

This commit is contained in:
Todd C. Miller
2013-04-17 09:32:27 -04:00
parent d32cb3d659
commit 9c1ee1fe73
5 changed files with 101 additions and 49 deletions

View File

@@ -215,5 +215,6 @@ void init_lexer(void);
void init_parser(const char *, bool);
int alias_compare(const void *, const void *);
int hexchar(const char *s);
size_t base64_decode(const char *str, unsigned char *dst, size_t dsize);
#endif /* _SUDOERS_PARSE_H */