aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
blob: 0152f35ba4a3314dafd8804c9da6ce6892ba8dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MAGI_INCLUDED_TOOLS
#define MAGI_INCLUDED_TOOLS


char *magi_str_lowercase(char *str);

/* Results of both create functions are malloced, so need to be freed. */
char *magi_str_create_copy(const char *first, int len);
char *magi_str_create(int len);

void magi_str_add(char **str, int *len, int *size, char c);


#endif