This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
piquant/src/string.h

14 lines
365 B
C
Raw Normal View History

#ifndef _STRING_H_
#define _STRING_H_
#include "types.h"
size_t strlen(char *ptr);
int strncat(char *dest, char *src, size_t n);
void *memset(void *s, char c, size_t n);
void *memcpy(void *dest, void *src, size_t n);
2016-03-27 13:23:46 -07:00
int strcmp(char *s1, char *s2);
int lstrip(char *s1, char *s2, char *strip);
int rstrip(char *s1, char *s2, char *strip);
#endif /* _STRING_H_ */