Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unicode.c « option « fatfs « fs « pastilda « emb - github.com/thirdpin/pastilda.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33def26308d48dae018714c08eb6428080512c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <fs/fatfs/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