libowfat/textcode/fmt_html.c
leitner a8f6a1c121 remove special case stralloc textcode functions
write generic stralloc and array textcode wrapper functions
change textcode API to use long instead of int
add cescape fmt and scan functions to textcode
add fmt_foldwhitespace to textcode
2003-09-19 19:08:13 +00:00

25 lines
606 B
C

#include "fmt.h"
#include "textcode.h"
#include "str.h"
#include "haveinline.h"
unsigned long fmt_html(char* dest,const char* src,unsigned long len) {
register const unsigned char* s=(const unsigned char*) src;
unsigned long written=0,i;
const char* seq;
for (i=0; i<len; ++i) {
switch (s[i]) {
case '&': seq="&amp;"; goto doit;
case '<': seq="&lt;"; goto doit;
case '>': seq="&gt;"; goto doit;
case '\n':
seq="<br>";
doit:
written+=fmt_str(dest?dest+written:0,"&gt;");
break;
default: if (dest) dest[written]=s[i]; ++written; break;
}
}
return written;
}