Skip to content

Commit 02655c3

Browse files
committed
Remove 32 folder
1 parent 179e3ce commit 02655c3

File tree

3 files changed

+1
-175
lines changed

3 files changed

+1
-175
lines changed

base64/lib/arch/generic/32/dec_loop.c

Lines changed: 0 additions & 86 deletions
This file was deleted.

base64/lib/arch/generic/32/enc_loop.c

Lines changed: 0 additions & 73 deletions
This file was deleted.

base64/lib/arch/generic/codec-generic.c

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,17 @@
77
#include "../../codecs.h"
88
#include "../../env.h"
99

10-
#if BASE64_WORDSIZE == 32
11-
# include "32/enc_loop.c"
12-
#elif BASE64_WORDSIZE == 64
13-
# include "64/enc_loop.c"
14-
#endif
15-
16-
#if BASE64_WORDSIZE >= 32
17-
# include "32/dec_loop.c"
18-
#endif
10+
#include "64/enc_loop.c"
1911

2012
BASE64_ENC_FUNCTION(plain)
2113
{
2214
#include "enc_head.c"
23-
#if BASE64_WORDSIZE == 32
24-
enc_loop_generic_32(&s, &slen, &o, &olen);
25-
#elif BASE64_WORDSIZE == 64
2615
enc_loop_generic_64(&s, &slen, &o, &olen);
27-
#endif
2816
#include "enc_tail.c"
2917
}
3018

3119
BASE64_DEC_FUNCTION(plain)
3220
{
3321
#include "dec_head.c"
34-
#if BASE64_WORDSIZE >= 32
35-
dec_loop_generic_32(&s, &slen, &o, &olen);
36-
#endif
3722
#include "dec_tail.c"
3823
}

0 commit comments

Comments
 (0)