mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 19:55:07 +01:00
13 lines
No EOL
193 B
C
13 lines
No EOL
193 B
C
#include<string.h>
|
|
|
|
int main(void) {
|
|
char buf[10];
|
|
|
|
memset(buf, 34, sizeof(buf));
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (buf[i] != 34) {
|
|
return 1;
|
|
}
|
|
}
|
|
} |