]>
git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/string.h
dd90c7bc5f6c7c8da3470e06cdd9db0aa6717513
1 //-----------------------------------------------------------------------------
2 // Jonathan Westhues, Aug 2005
3 // Copyright (C) 2010 Hector Martin "marcan" <marcan@marcansoft.com>
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // Common string.h functions
10 //-----------------------------------------------------------------------------
18 RAMFUNC
void *memcpy(void *dest
, const void *src
, size_t len
);
19 void *memset(void *dest
, int c
, size_t len
);
20 void *memmove(void *dest
, const void *src
, size_t len
);
21 RAMFUNC
int memcmp(const void *av
, const void *bv
, size_t len
);
22 size_t strlen(const char *str
);
23 char *strncat(char *dest
, const char *src
, size_t n
);
24 char *strcat(char *dest
, const char *src
);
26 #endif /* __STRING_H */