c-preprocessor/include/utils.h

17 lines
317 B
C

#ifndef _utils_h
#define _utils_h
#include <stdio.h>
extern int write_line_to_file(FILE *f, char *line);
extern char *strdup(char *str);
extern void strip_spaces_in_def(char *def);
extern int a_strcat(char **dest, char *src);
extern int get_next_whitespace_idx(char *s);
extern char *skip_word(char *s);
#endif