1
0
mirror of https://github.com/fumiama/base16384.git synced 2026-06-06 18:50:31 +08:00

chore: optimize statements

This commit is contained in:
源文雨
2024-04-06 14:38:04 +09:00
parent 5219ed7f26
commit 3704467871
6 changed files with 23 additions and 33 deletions

View File

@@ -26,9 +26,9 @@
#define TEST_SIZE (4096)
char encbuf[TEST_SIZE+16];
char decbuf[TEST_SIZE/7*8+16];
char tstbuf[TEST_SIZE+16];
static char encbuf[TEST_SIZE+16];
static char decbuf[TEST_SIZE/7*8+16];
static char tstbuf[TEST_SIZE+16];
#define loop_diff(target) \
for(i = start; i < end; i++) { \