Archived
1
0
Fork 0

moving src/notify to src/

This commit is contained in:
Henrik Hautakoski 2010-10-19 11:25:24 +02:00
parent 309350c01f
commit 22d7238b36
15 changed files with 32 additions and 33 deletions

35
src/queue.h Normal file
View file

@ -0,0 +1,35 @@
/* queue.h
*
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __NOTIFY_QUEUE_H
#define __NOTIFY_QUEUE_H
#include <stddef.h>
typedef struct __queue* queue_t;
queue_t queue_init(void);
void queue_enqueue(queue_t q, void *obj);
void* queue_dequeue(queue_t q);
int queue_isempty(queue_t q);
size_t queue_num_items(queue_t q);
void queue_clear(queue_t q);
void queue_destroy(queue_t q);
#endif /* __NOTIFY_QUEUE_H */