Upload files to "/"

This commit is contained in:
8nl 2024-01-08 09:37:28 +00:00
parent 03203d3998
commit 8aeef44559
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
# cutecat.c
Make output more cute!

View File

@ -16,7 +16,7 @@ void OwO(char *buf, off_t len) {
for (int i = 0; i < len / 10; i++) {
size_t i = rand() % len;
if (i + 3 < len && !isspace(buf[i]) && !isspace(buf[i + 2])) {
if (i + 3 < len && !isspace(buf[i]) && !isspace(buf[i + 1]) && !isspace(buf[i + 2])) {
char eye = eyes[rand() % sizeof(eyes)];
buf[i] = eye;