#ifndef __ASYNC__
#define __ASYNC__
#include Copyright By PowCoder代写 加微信 powcoder typedef struct my_item { typedef struct my_queue { void async_init(int); 程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com
/* TODO: More stuff here, maybe? */
struct my_item *next;
struct my_item *prev;
} my_item_t;
my_item_t *head;
/* TODO: More stuff here, maybe? */
} my_queue_t;
void async_run(void (*fx)(int), int args);