string.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _STRING_H
00029 #define _STRING_H
00030
00031 #include <stddef.h>
00032
00033 #ifdef __cplusplus
00034 extern "C" {
00035 #endif
00036
00037 extern void* memset (void * p, int val, size_t len);
00038 extern void* memcpy (void* to, const void* from, size_t len);
00039
00040 #ifdef __cplusplus
00041 }
00042 #endif
00043
00044 #endif
|