mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
402 B
17 lines
402 B
#include "fmt.h" |
|
#include "textcode.h" |
|
#include "str.h" |
|
#include "haveinline.h" |
|
|
|
unsigned long fmt_foldwhitespace(char* dest,const char* src,unsigned long len) { |
|
register const unsigned char* s=(const unsigned char*) src; |
|
unsigned long i; |
|
char c; |
|
for (i=0; i<len; ++i) { |
|
switch (c=s[i]) { |
|
case ' ': case '\t': case '\n': c='_'; break; |
|
} |
|
if (dest) dest[i]=c; |
|
} |
|
return len; |
|
}
|
|
|