forked from xamidev/pepperOS
Move headers to include/
This commit is contained in:
16
include/string/string.h
Normal file
16
include/string/string.h
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* @author xamidev <xamidev@riseup.net>
|
||||
* @brief String manipulation functions
|
||||
* @license GPL-3.0-only
|
||||
*/
|
||||
|
||||
#ifndef STRING_H
|
||||
#define STRING_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
char *strcpy(char *dest, const char *src);
|
||||
char *strcat(char *dest, const char *src);
|
||||
void strncpy(char* dst, const char* src, size_t n);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user