13 lines
186 B
C
13 lines
186 B
C
#define EV_STR_IMPLEMENTATION
|
|
#include "ev_str.h"
|
|
|
|
#include <assert.h>
|
|
|
|
int main(void)
|
|
{
|
|
evstring stack_str = evstr("abc");
|
|
assert(evstring_getSpace(stack_str) == 0);
|
|
|
|
return 0;
|
|
}
|