Home
       tutil.h - ics2txt - convert icalendar .ics file to plain text
  HTML git clone git://bitreich.org/ics2txt git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ics2txt
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
       ---
       tutil.h (307B)
       ---
            1 #ifndef UTIL_H
            2 #define UTIL_H
            3 
            4 #include <stddef.h>
            5 
            6 /** src/util.c **/
            7 size_t strlcpy(char *buf, char const *str, size_t sz);
            8 char * strsep(char **str_p, char const *sep);
            9 void strchomp(char *line);
           10 int strappend(char **base_p, char const *s);
           11 void * reallocarray(void *buf, size_t len, size_t sz);
           12 
           13 #endif