Skip to content

cf_string_pop_n

Category: string
GitHub: cute_string.h


Removes the last n characters from the string.

#define cf_string_pop_n(s, n) spopn(s, n)
Parameters Description
s The string.
n The number of characters to remove.

Remarks

Shortform: spopn(s, n).

cf_string_pop
cf_string_erase