10 lines
157 B
C
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
|