mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 19:55:07 +01:00
expand test
This commit is contained in:
parent
3a98a2b822
commit
00f78e9749
1 changed files with 7 additions and 1 deletions
|
|
@ -3,5 +3,11 @@
|
|||
int main(void) {
|
||||
char buf[10];
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
memset(buf, 34, sizeof(buf));
|
||||
|
||||
for (int i = 0; i < 10; ++i) {
|
||||
if (buf[i] != 34) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue