程序代写 #ifndef __ASYNC__

#ifndef __ASYNC__
#define __ASYNC__

#include

Copyright By PowCoder代写 加微信 powcoder

typedef struct my_item {
/* TODO: More stuff here, maybe? */
struct my_item *next;
struct my_item *prev;
} my_item_t;

typedef struct my_queue {
my_item_t *head;
/* TODO: More stuff here, maybe? */
} my_queue_t;

void async_init(int);
void async_run(void (*fx)(int), int args);

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com