status-go/vendor/github.com/mattn/go-pointer/_example/callback.h

10 lines
147 B
C

#include <unistd.h>
typedef void (*callback)(void*);
static void call_later(int delay, callback cb, void* data) {
sleep(delay);
cb(data);
}