Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- char *spaces(char *st, int n)
- {
- printf("Выполнен вход в space()");
- printf("%c", *st);
- char *top = st + n;
- for(; *st!=0x20 && st<top; st++);
- return st==top ? NULL : st;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement