mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-28 12:25:19 +01:00
11 lines
156 B
C
11 lines
156 B
C
|
#ifndef __PCCTS_STRING_H__
|
||
|
#define __PCCTS_STRING_H__
|
||
|
|
||
|
#ifdef PCCTS_USE_NAMESPACE_STD
|
||
|
#include <cstring>
|
||
|
#else
|
||
|
#include <string.h>
|
||
|
#endif
|
||
|
|
||
|
#endif
|