gargoyle/include/gargoyle/twine.h

11 lines
257 B
C

#ifndef __GARGOYLE_TWINE_H_
#define __GARGOYLE_TWINE_H_
#include <stdint.h>
uint8_t is_sep(char tok);
uint8_t gargoyle_cmp(const char *s1, const char *s2, uint16_t len, uint8_t flags);
char *gargoyle_cpy(char *dst, const char *src, uint16_t len);
#endif