#ifndef EDAPI_UTIL_H #define EDAPI_UTIL_H /** * Checks if a string pointer is NULL or empty */ #define S_EMPTY(s) ((s == NULL) || strlen(s) <= 0) #endif