This commit is contained in:
2023-12-05 21:59:01 -08:00
parent 3238b8b402
commit 31129c5916
3 changed files with 63 additions and 5 deletions

View File

@ -5,6 +5,9 @@
#define DEFAULT_DELIM " \t\n\r\f\v"
#define MAX(x, y) (x) > (y) ? (x) : (y)
#define MIN(x, y) (x) < (y) ? (x) : (y)
char *md5_str(const char *);
char *capture_system(const char *);