aboutsummaryrefslogtreecommitdiff
path: root/stmhal/fatfs/src/option/unicode.c
blob: 16a8d961f29ec29b46df31ceba8319b0d3e2552a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "../ff.h"

#if _USE_LFN != 0

#if   _CODE_PAGE == 932
#include "cc932.c"
#elif _CODE_PAGE == 936
#include "cc936.c"
#elif _CODE_PAGE == 949
#include "cc949.c"
#elif _CODE_PAGE == 950
#include "cc950.c"
#else
#include "ccsbcs.c"
#endif

#endif