Skip to content
Snippets Groups Projects
request.h 106 B
#ifndef REQUEST_H
#define REQUEST_H

typedef struct req {
    int n;
    void* args[2];
} Request;

#endif