2023-02
This commit is contained in:
@ -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 *);
|
||||
|
Reference in New Issue
Block a user