Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit c09cd29

Browse files
authored
Add files via upload
1 parent af27b82 commit c09cd29

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ windres icon.rc -o icon.o
1212
echo BUILDING: fetch.exe ...
1313
gcc -O3 -march=native -flto -ffunction-sections -fdata-sections -Wl,--gc-sections -s fetch.c icon.o -o fetch.exe
1414

15-
@REM echo BUILDING: test.exe ...
16-
@REM gcc -O3 -march=native -flto -ffunction-sections -fdata-sections -Wl,--gc-sections -s test.c -o test.exe
15+
echo BUILDING: test.exe ...
16+
gcc -O3 -march=native -flto -ffunction-sections -fdata-sections -Wl,--gc-sections -s test.c -o test.exe
1717

1818
echo.
1919
echo Cleaning ...

test.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <time.h>
44
#include <intrin.h>
55

6-
#define VEDAL "\033[38;2;84;170;102m*%#*#############*+**********++++++*##*:\033[38;2;42;42;42m .:::::::::::::\n" \
6+
#define VEDAL "\033[38;2;84;170;102m*%#*#############*+**********++++++*##*:\033[38;2;42;42;42m .:::::::::::::\n" \
77
"\033[38;2;84;170;102m*#************++=-+\033[38;2;127;199;131m**##%#\033[38;2;158;211;152m%%%%%%%%%###*##-\033[38;2;42;42;42m .::::::::::\n" \
88
"\033[38;2;84;170;102m************+=+\033[38;2;127;199;131m*#%@%\033[38;2;158;211;152m@@@@@@@@@@@@@@@@@@@@@#=.\033[38;2;42;42;42m ..:::::::\n" \
99
"\033[38;2;84;170;102m*#********==\033[38;2;127;199;131m*#%\033[38;2;158;211;152m@@@@@%@%%%%%%%%%%%%%%%%%@@@@@%=\033[38;2;42;42;42m .::::::\n" \
@@ -28,13 +28,13 @@
2828
"\033[38;2;158;211;152m%@%%%%%@@\033[38;2;84;170;102m= .:=\033[38;2;127;199;131m+*#%%@%\033[38;2;158;211;152m@@@@@%%%%#\033[38;2;84;170;102m**#*++++*\033[38;2;158;211;152m#%%@@@@@@\033[38;2;42;42;42m ::::\n" \
2929
"\033[38;2;158;211;152m%@%%%%%@@\033[38;2;84;170;102m*\033[38;2;42;42;42m ... \033[38;2;158;211;152m#@@@@@@@@@@@@@@+\033[38;2;42;42;42m ::::\n" \
3030
"\033[38;2;158;211;152m%@%%%%@@@%\033[38;2;42;42;42m .:::::.:.........:.:::..+%@@@@@@%#*=:\033[38;2;42;42;42m. :::::\n" \
31-
"\033[38;2;158;211;152m%@%@@@@@@@\033[38;2;42;42;42m.:::::::::::::::::::::::. ..::... ..::::::\n" \
31+
"\033[38;2;158;211;152m%@%@@@@@@@\033[38;2;42;42;42m.:::::::::::::::::::::::. ..::... ..::::::\n\033[0m" \
3232

3333

3434
int main() {
3535

3636

37-
DWORD written;
37+
DWORD _;
3838
DWORD dwMode = 0;
3939
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
4040
GetConsoleMode(hOut, &dwMode);
@@ -44,7 +44,7 @@ int main() {
4444
SetConsoleOutputCP(65001);
4545

4646

47-
WriteConsoleA(hOut, ANNY, sizeof(ANNY) - 1, &written, NULL);
47+
WriteConsoleA(hOut, VEDAL, sizeof(VEDAL) - 1, &_, NULL);
4848

4949

5050

0 commit comments

Comments
 (0)