You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
typedef struct stack_st {
|
|
int num;
|
|
char **data;
|
|
int sorted;
|
|
|
|
int num_alloc;
|
|
int (*comp)(const void *, const void *);
|
|
} _STACK;
|
|
|
|
struct buf_mem_st {
|
|
size_t length;
|
|
char *data;
|
|
size_t max;
|
|
};
|
|
|
|
typedef struct buf_mem_st BUF_MEM;
|
|
typedef long int time_t;
|