changed ascii range
Some checks failed
Codacy Scan / Codacy Security Scan (push) Failing after 35s
Test WHY2-logger / test-why2 (why2-logger, configure.sh, ubuntu-latest, ./out/why2-logger-test, valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s) (push) Failing after 1m21s
Build WHY2-chat / test-why2 (./out/why2-chat-client, configure.sh, ubuntu-latest, ./out/why2-chat-server) (push) Failing after 1m17s
Test WHY2-core / test-why2 (why2, configure.sh, ubuntu-latest, ./out/why2-core-test, valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s) (push) Failing after 1m19s

This commit is contained in:
Václav Šmejkal 2024-08-31 16:25:36 +02:00
parent 37a615cb03
commit 3fa15f5ebb
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -142,7 +142,7 @@ void add_brackets(char **json)
why2_bool is_ascii(char c) why2_bool is_ascii(char c)
{ {
return 20 <= c && c <= 126; return 33 <= c && c <= 126;
} }
void remove_non_ascii(char **text) void remove_non_ascii(char **text)