MP-Gadget  5.0.1.dev1-76bc7d4726-dirty
string.h
Go to the documentation of this file.
1 #ifndef _FASTPM_STRING_H_
2 #define _FASTPM_STRING_H_
3 
4 #include <stdarg.h>
5 
6 char *
7 fastpm_file_get_content(const char * filename);
8 
9 char *
10 fastpm_strdup(const char * str);
11 
12 char *
13 fastpm_strdup_printf(const char * fmt, ...);
14 
15 char *
16 fastpm_strdup_vprintf(const char * fmt, va_list va);
17 
18 void
19 fastpm_path_ensure_dirname(const char * path);
20 
21 #endif
void fastpm_path_ensure_dirname(const char *path)
Definition: string.c:70
char * fastpm_file_get_content(const char *filename)
Definition: string.c:14
char * fastpm_strdup_printf(const char *fmt,...)
Definition: string.c:41
char * fastpm_strdup(const char *str)
Definition: string.c:31
char * fastpm_strdup_vprintf(const char *fmt, va_list va)
Definition: string.c:51