2024-01,02,03

This commit is contained in:
2024-12-03 12:08:18 -08:00
parent b5f4daede9
commit 69bed5d6a8
6 changed files with 329 additions and 57 deletions

View File

@ -9,7 +9,13 @@
#define MIN(x, y) (x) < (y) ? (x) : (y)
char *md5_str(const char *);
Vector *string_to_int_vector(const char *input_string, const char *delim);
int int_comp(const void *a, const void *b);
char **get_matches(char *in, char *pat, size_t *sz, size_t max_matches);
void free_matches(char **matches, size_t sz);
#endif