Sign in
qemu
/
meson
/
a3d3efd3cfc6e9b0ce8a7536527e1e9ca134f80a
/
.
/
test cases
/
common
/
179 escape and unicode
/
main.c
blob: 6137ad79cc3d28f880a4ca831793e0960fdc2d94 [
file
] [
log
] [
blame
]
#include
<string.h>
const
char
*
does_it_work
(
void
);
int
a_fun
(
void
);
int
main
(
void
)
{
if
(
strcmp
(
does_it_work
(),
"yes it does"
)
!=
0
)
{
return
-
a_fun
();
}
return
0
;
}