cgo-callback/mylib.h

9 lines
105 B
C

#ifndef MYLIB_H
#define MYLIB_H 1
typedef void (*printer_t)(int);
void use_printer(printer_t);
#endif