You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516171819 |
- #ifndef _SQQUEUE_H_
- #define _SQQUEUE_H_
-
- struct message
- {
- int data;
- };
- typedef struct message * message_t;
-
- struct queue
- {
- message_t msg;
- int front;
- int rear;
- int len;
- };
- typedef struct queue * queue_t;
-
- #endif
|