After this short break, I have to announce that this project is no longer called openth. The name was stereotypical and conflicted with Open Theme Hospital. Thus, gentlemen, we are now working on Seiyou (西洋). Thanks to lachs0r for this wonderful suggestion. Also the lincense has changed. Farewell, gnutardedness, hello MIT. I feel somehow relieved now after freeing the project of nearly one thousand lines.
19 lines
No EOL
467 B
C
19 lines
No EOL
467 B
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
|
|
*/
|
|
|
|
#ifndef LIST_H
|
|
#define LIST_H
|
|
|
|
/* I got annoyed of the code doubling caused by simple linked lists,
|
|
* so i do some void-magic here to save the lines.
|
|
*/
|
|
|
|
void *create_element(void **dest, int size);
|
|
void *delete_element(void **dest, void *e);
|
|
void *delete_all_elements(void **dest);
|
|
|
|
#endif |