Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
c014c618f950f80edc09330c834f30d20b7589f8
/
.
/
examples
/
bindgen
/
simple
/
simple.h
blob: f689ac06b779689477aa43a160d6f810a6f45063 [
file
] [
log
] [
blame
]
#ifndef
__SIMPLE_H_INCLUDE__
#define
__SIMPLE_H_INCLUDE__
#ifdef
__cplusplus
#define
EXTERN_C
extern
"C"
#else
#define
EXTERN_C
#endif
#include
<stdint.h>
EXTERN_C
const
int64_t
SIMPLE_VALUE
=
42
;
EXTERN_C
const
int64_t
simple_function
();
#endif