Files
evol-headers/tests/ev_str/stack_get_space.c
T
2026-05-03 20:07:16 +03:00

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;
}