![leitner](/assets/img/avatar_default.png)
add some single char escaping routines to fmt.h pull in html5 entities from w3c and use those to do a proper scan_html decoding fix an off-by-one in fmt_to_array add a ton of unit tests for the fmt routines
13 lines
143 B
C
13 lines
143 B
C
#include <stdlib.h>
|
|
#ifdef A
|
|
#include <alloca.h>
|
|
#else
|
|
#include <malloc.h>
|
|
#endif
|
|
|
|
int main() {
|
|
char* c=alloca(23);
|
|
(void)c;
|
|
return 0;
|
|
}
|