cgo-callback/mylib.h

9 lines
105 B
C
Raw Normal View History

2022-07-29 18:45:20 +00:00
#ifndef MYLIB_H
#define MYLIB_H 1
typedef void (*printer_t)(int);
void use_printer(printer_t);
#endif