diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2022-01-09 18:50:48 +0100 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2022-01-10 22:36:52 +0100 |
| commit | 8e79ceaa7d3995df5a5dcf0ffdbd52ebe4c52163 (patch) | |
| tree | 60424b081f4a3e37e0c87dfa764ea559f1ba0543 /src/include/string.h | |
| parent | dbbb74c22f42df9175eaea72c1eb12d6deab332c (diff) | |
Indentation
Diffstat (limited to 'src/include/string.h')
| -rw-r--r-- | src/include/string.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/include/string.h b/src/include/string.h index bef5854..78fa956 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -1,16 +1,12 @@ #ifndef _STRING_H #define _STRING_H + #include <stddef.h> -#ifdef __cplusplus -extern "C" { -#endif + void* memcpy(void*, const void*, size_t); void* memset(void*, int, size_t); char* strcpy(char*, const char*); size_t strlen(const char*); -#ifdef __cplusplus -} -#endif #include<types.h> |
