11 lines
210 B
C
11 lines
210 B
C
|
#include <stddef.h>
|
||
|
|
||
|
#ifndef MY_STRING_H
|
||
|
#define MY_STRING_H
|
||
|
|
||
|
int my_strcmp(char * one, char * two);
|
||
|
char my_strcpy(char * dest, char * source);
|
||
|
char my_strncpy(char * dest, char * source, size_t len);
|
||
|
|
||
|
#endif
|