htex

simple incorrect html parser
git clone git://git.relim.de/htex.git
Log | Files | Refs | README

misc.h (294B)


      1 char *cp_to_string(uint_least32_t cp, size_t len);
      2 char *string_concat(char *str1, char *str2);
      3 char *string_trim(char *text);
      4 bool string_starts_with(const char *string, const char *part);
      5 bool string_is_empty(char *string);
      6 bool file_try_read(char *buf, FILE *fp);
      7 char *file_read(FILE *fp);