You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
387 B

#include "main.h"
#include "error.h"
#ifndef UTILH
#define UTILH
void *dualloc(void *thing, size_t size);
int get_line(FILE* in, char **out);
int split_string(char **sep_string[], int *num, char *string, char delim);
int join_string(char **joined, int arr_len, char *sep_stirng[], char *delim);
int strip_char(char *string, char del);
int print_chicken(State *state);
#endif