void splitpath(const char *path, char *directory, char *filename, char *extension)
{
...

C Extracting directory, filen...

by Navaneeth, July 03, 2010 17:13, 15 refactorings, tagged with c string replace

I am new to C. Following co...

D41d8cd98f00b204e9800998ecf8427e Talk
char *
str_replace(char *str, char *old, char *new) {
  int i, count = 0;
...

C str_replace

by Tj Holowaychuk, June 23, 2009 21:23, 3 refactorings, tagged with c string replace

Pretty weak first pass at a...

F1e3ab214a976a39cfd713bc93deb10f Talk