Files
Yanis 1d03b84d3d Match __mem.c and runtime.c (#153)
* match more of runtime

* mark matched for mq

* format

* revert stdarg changes

* review
2024-05-26 08:11:52 -07:00

15 lines
373 B
C

#ifndef _STRING_H_
#define _STRING_H_
#include "mem_funcs.h"
#include "stddef.h"
size_t strlen(const char* s);
char* strcpy(char* dest, const char* src);
char* strncpy(char* dest, const char* src, size_t num);
int strcmp(const char* s1, const char* s2);
int strncmp(const char* s1, const char* s2, size_t n);
char* strncat(char* dest, const char* src, size_t n);
#endif