aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/src/lib/ecore_config/ecore_config_util.h
blob: 5bee9d696d1b2c5a4d8a42b928a578d1c7690b6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define TIMER_STOP 0
#define TIMER_CONT 1

typedef struct _estring
{
   char               *str;
   int                 alloc, used;
} estring;

estring            *estring_new(int size);
char               *estring_disown(estring * e);
int                 estring_appendf(estring * e, const char *fmt, ...);

int                 esprintf(char **result, const char *fmt, ...);