EFL 1.7 svn doobies
[profile/ivi/efreet.git] / src / tests / ef_test.h
1 #ifndef EF_TEST
2 #define EF_TEST
3
4 #include "config.h"
5
6 #include <eina_types.h>
7
8 #define IF_FREE(x) do { if (x) free(x); x = NULL; } while (0);
9 #define NEW(x, c) calloc(c, sizeof(x))
10
11 #endif