mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
59 lines
1.2 KiB
C
59 lines
1.2 KiB
C
#ifndef __CLOVER_STRING_H__
|
|
#define __CLOVER_STRING_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#ifdef __GNUC__
|
|
//void* memset(void* dst, int ch, UINT64 count) __attribute__ ((used));
|
|
void* memcpy(void *dst, const void *src, size_t len) __attribute__ ((used));
|
|
#else
|
|
// void* memset(void* dst, int ch, UINT64 count);
|
|
void* memcpy(void *dst, const void *src, size_t len);
|
|
#endif
|
|
|
|
|
|
inline void* memmove(void *dst, const void *src, size_t len)
|
|
{
|
|
return CopyMem(dst, (void*)(src), len);
|
|
}
|
|
|
|
inline void* memcpy(void *dst, const void *src, size_t len)
|
|
{
|
|
return CopyMem(dst,src,len);
|
|
}
|
|
|
|
inline char* strcat(char* s1, const char* s2)
|
|
{
|
|
AsciiStrCatS(s1, AsciiStrLen(s1)+1, s2);
|
|
return s1;
|
|
}
|
|
|
|
inline char* strcpy(char* dst, const char* src)
|
|
{
|
|
AsciiStrCpyS(dst,AsciiStrLen(src)+1,src);
|
|
return dst;
|
|
}
|
|
|
|
inline char* strncpy(char * dst, const char * src, size_t len)
|
|
{
|
|
AsciiStrnCpyS(dst,(UINTN)len+1,src,(UINTN)len);
|
|
return dst;
|
|
}
|
|
|
|
//inline char* strncat(char *restrict s1, const char *restrict s2, size_t n)
|
|
//{
|
|
// return AsciiStrCatS(s1, AsciiStrLen(strDest)+1,strSource)
|
|
//}
|
|
//
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __CLOVER_STRING_H__
|