You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
606 B
C
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="&"; goto doit;
|
|
case '<': seq="<"; goto doit;
|
|
case '>': seq=">"; goto doit;
|
|
case '\n':
|
|
seq="<br>";
|
|
doit:
|
|
written+=fmt_str(dest?dest+written:0,">");
|
|
break;
|
|
default: if (dest) dest[written]=s[i]; ++written; break;
|
|
}
|
|
}
|
|
return written;
|
|
}
|