Skip to content

Commit 7f36cb8

Browse files
committed
chore(option): moved files to include only one
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 6fdbae0 commit 7f36cb8

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/option/ccsbcs.c renamed to option/ccsbcs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/ 869 Greek 2
2222
*/
2323

24-
#include "../ff.h"
24+
#include "../src/ff.h"
2525

2626

2727
#if _CODE_PAGE == 437

option/unicode.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#if _USE_LFN != 0
2+
3+
#if _CODE_PAGE == 932 /* Japanese Shift_JIS */
4+
#include "cc932.c"
5+
#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */
6+
#include "cc936.c"
7+
#elif _CODE_PAGE == 949 /* Korean */
8+
#include "cc949.c"
9+
#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */
10+
#include "cc950.c"
11+
#else /* Single Byte Character-Set */
12+
#include "ccsbcs.c"
13+
#endif
14+
15+
#endif

src/option/unicode.c

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,2 @@
11
#include "../ff.h"
2-
3-
#if _USE_LFN != 0
4-
5-
#if _CODE_PAGE == 932 /* Japanese Shift_JIS */
6-
#include "cc932.c"
7-
#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */
8-
#include "cc936.c"
9-
#elif _CODE_PAGE == 949 /* Korean */
10-
#include "cc949.c"
11-
#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */
12-
#include "cc950.c"
13-
#else /* Single Byte Character-Set */
14-
#include "ccsbcs.c"
15-
#endif
16-
17-
#endif
2+
#include "../../option/unicode.c"

0 commit comments

Comments
 (0)