blob: 6b042f8786c2caf498ea4d7b47cd24f094845234 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef AMMUNITION_STRING_H
#define AMMUNITION_STRING_H
typedef unsigned int size_x;
//typedef __SIZE_TYPE__ size_x;
/*
Forward declaration of functions
*/
void *ammunition_memcpy( void *, const void *, size_x );
void *ammunition_memset( void *, int, size_x );
int ammunition_memcmp ( const void *mem1, const void *mem2, size_x size );
void *ammunition_memmove ( void *s1, const void *s2, size_x n );
int ammunition_strcmp ( const char *str1, const char *str2 );
#endif /* AMMUNITION_STRING_H */
|