STRING* s = str_create("");
str_cpy(s,"abcdefg"); //1~3

int _s = 1;
int _e = 3;
str_clip(s,_s);
str_trunc(s,_e);

printf("%s",s->chars);


development 3d game is interesting!