2025-04-24 12:59:55 +02:00

10 lines
157 B
C

#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