-
Notifications
You must be signed in to change notification settings - Fork 1
sunuslee/SunuSfuncS
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
here are some functions i think i might need in the future. hope you find them useful, too. functions #0: char *strjoin(char *buf, char *delim, "string1", "string2", "string3", ..., NULL) join the strings with delimeter string 'delim' , the last string MUST BE 'NULL' return buf. this function has no SAFETY check, buf must be BIG ENOUGH. functions #1: char *strbetween(char *buf, char *string, char *start, char *end); this function returns the first substring between 'start' and 'end', and store it in buf. buf must be big enought, if nothing found, returns NULL functions #2: char *sstrrep(char *str, const char *old, const char *new, int times) replace the substring 'old' with 'new' for 'times' times; if times == 0, then replace all 'old' with 'new' return str on success, NULL on error. NOTE: if can not find 'times' 'old', return NULL as well.
About
some handy functions i think i might need in the future.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published