This commit is contained in:
2023-11-30 12:51:32 -08:00
parent 8b61f739bc
commit 525a33963b
5 changed files with 126 additions and 5 deletions

View File

@ -1,8 +1,14 @@
#ifndef ADVENT_H_UTILITY_
#define ADVENT_H_UTILITY_
#include "lfvector.h"
#define DEFAULT_DELIM " \t\n\r\f\v"
char *md5_str(const char *);
char *capture_system(const char *);
Vector *string_to_int_vector(const char *input_string, const char *delim);
#endif