9b08faf3ae
From https://github.com/micropython/oofatfs, branch work-R0.12b, commit a346ccec123c2e4d887e2751d64156208d03bff4.
18 lines
400 B
C
18 lines
400 B
C
#include "../ff.h"
|
|
|
|
#if _USE_LFN != 0
|
|
|
|
#if _CODE_PAGE == 932 /* Japanese Shift_JIS */
|
|
#include "cc932.c"
|
|
#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */
|
|
#include "cc936.c"
|
|
#elif _CODE_PAGE == 949 /* Korean */
|
|
#include "cc949.c"
|
|
#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */
|
|
#include "cc950.c"
|
|
#else /* Single Byte Character-Set */
|
|
#include "ccsbcs.c"
|
|
#endif
|
|
|
|
#endif
|