12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* until.h
- *
- * Wrapper functions and data structures
- *
- * Slitheen - a decoy routing system for censorship resistance
- * Copyright (C) 2017 Cecylia Bocovich (cbocovic@uwaterloo.ca)
- *
- * 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, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Additional permission under GNU GPL version 3 section 7
- *
- * If you modify this Program, or any covered work, by linking or combining
- * it with the OpenSSL library (or a modified version of that library),
- * containing parts covered by the terms of the OpenSSL Licence and the
- * SSLeay license, the licensors of this Program grant you additional
- * permission to convey the resulting work. Corresponding Source for a
- * non-source form of such a combination shall include the source code
- * for the parts of the OpenSSL library used as well as that of the covered
- * work.
- */
- #ifndef _UTIL_H_
- #define _UTIL_H_
- #include <stddef.h>
- #include <stdint.h>
- void *emalloc(size_t size);
- void *ecalloc(size_t nmemb, size_t size);
- //Standard queue data structure
- typedef struct element_st {
- void *data;
- struct element_st *next;
- } element;
- typedef struct queue_st {
- element *first;
- element *last;
- } queue;
- queue *init_queue();
- void enqueue(queue *list, void *data);
- void *dequeue(queue *list);
- void *peek(queue *list, int32_t n);
- void remove_queue(queue *list);
- #endif /*_UTIL_H_*/
|