Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
examples
/
call_v_from_c
/
test_print.c
7
lines
·
6
sloc
·
76 bytes
·
50820105a1e7ba4c84d5a2af4f690aca59cf65cf
Raw
1
extern
void
foo(
const
char
* s);
2
3
int
main()
4
{
5
foo(
"hello"
);
6
foo(
"bye"
);
7
}
8