Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanis002 committed Sep 21, 2024
1 parent b825f3b commit 837dfdf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libc/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@

char* strcpy(char* dst, const char* src);
char* strncpy(char* dst, const char* src, size_t num);
char* strncat(char* dest, const char* src, size_t n);
char* strcat(char* dest, const char* src);
size_t strlen(const char* s);
int strcmp(const char* s1, const char* s2);
int strncmp(const char* s1, const char* s2, size_t n);
char* strchr(const char* str, int chr);
char* strcat(char* dest, const char* src);

void* memchr(const void* p, int val, size_t n);
int memcmp(const void* p1, const void* p2, size_t n);
Expand Down

0 comments on commit 837dfdf

Please sign in to comment.