aoc/include/advent_utility.h

15 lines
277 B
C
Raw Normal View History

#ifndef ADVENT_H_UTILITY_
#define ADVENT_H_UTILITY_
2023-11-30 12:51:32 -08:00
#include "lfvector.h"
#define DEFAULT_DELIM " \t\n\r\f\v"
2021-09-18 10:59:09 -07:00
char *md5_str(const char *);
char *capture_system(const char *);
2021-09-08 12:12:11 -07:00
2023-11-30 12:51:32 -08:00
Vector *string_to_int_vector(const char *input_string, const char *delim);
#endif