repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Refer to C23 in place of C2X in glibc
[glibc.git]
/
string
/
tst-strfry.c
blob
e4e9018c5b0d67c4a6109aa542c216eee88a452a
1
#include <stdio.h>
2
#include <string.h>
3
4
int
5
do_test
(
void
)
6
{
7
char
str
[] =
"this is a test"
;
8
9
strfry
(
str
);
10
11
return
0
;
12
}
13
14
#include <support/test-driver.c>