15 lines
277 B
C
15 lines
277 B
C
#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
|