mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
CHG: moved to header file. common.h has RAMFUNC definition
This commit is contained in:
parent
3c345a41b2
commit
897a14c36f
2 changed files with 2 additions and 6 deletions
|
@ -7,9 +7,7 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Common string.h functions
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include "string.h"
|
||||
#include <stdint.h>
|
||||
|
||||
void *memcpy(void *dest, const void *src, int len)
|
||||
{
|
||||
|
|
|
@ -12,8 +12,7 @@
|
|||
#ifndef __STRING_H
|
||||
#define __STRING_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <util.h>
|
||||
#include <common.h>
|
||||
|
||||
int strlen(const char *str);
|
||||
RAMFUNC void *memcpy(void *dest, const void *src, int len);
|
||||
|
@ -25,5 +24,4 @@ char *strcat(char *dest, const char *src);
|
|||
void strreverse(char s[]);
|
||||
void itoa(int n, char s[]);
|
||||
|
||||
|
||||
#endif /* __STRING_H */
|
Loading…
Add table
Add a link
Reference in a new issue