index
:
zig-playground
main
learning zig
johannst
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
example-cross-compile-cpp
/
windll.cc
blob: 890117c89c3fe10fb5e0780badb42c026c42e891 (
plain
) (
blame
)
1
2
3
4
5
#include
<stdio.h>
__declspec
(
dllexport
)
void
say
(
const
char
*
str
)
{
if
(
str
)
puts
(
str
);
}