* \author Bernie Innocenti <bernie@codewiz.org>
*/
-#ifndef MWARE_FIFO_H
-#define MWARE_FIFO_H
+#ifndef STRUCT_FIFO_H
+#define STRUCT_FIFO_H
#include <cpu/types.h>
#include <cpu/irq.h>
}
#endif
-#endif /* MWARE_FIFO_H */
-
+#endif /* STRUCT_FIFO_H */
* \author Giovanni Bajo <rasky@develer.com>
*/
-#ifndef MWARE_HASHTABLE_H
-#define MWARE_HASHTABLE_H
+#ifndef STRUCT_HASHTABLE_H
+#define STRUCT_HASHTABLE_H
#include <cfg/compiler.h>
#include <cfg/macros.h>
return h;
}
-#endif /* MWARE_HASHTABLE_H */
+#endif /* STRUCT_HASHTABLE_H */
* \author Bernie Innocenti <bernie@codewiz.org>
*/
-#ifndef MWARE_HEAP_H
-#define MWARE_HEAP_H
+#ifndef STRUCT_HEAP_H
+#define STRUCT_HEAP_H
#include "cfg/cfg_heap.h"
#include <cfg/compiler.h>
#endif
-#endif /* MWARE_HEAP_H */
+#endif /* STRUCT_HEAP_H */
* \author Bernie Innocenti <bernie@codewiz.org>
*/
-#ifndef MWARE_LIST_H
-#define MWARE_LIST_H
+#ifndef STRUCT_LIST_H
+#define STRUCT_LIST_H
#include <cfg/compiler.h> /* INLINE */
#include <cfg/debug.h> /* ASSERT_VALID_PTR() */
return n;
}
-#endif /* MWARE_LIST_H */
+#endif /* STRUCT_LIST_H */
* \author Giovanni Bajo <rasky@develer.com>
*/
-#ifndef MWARE_POOL_H
-#define MWARE_POOL_H
+#ifndef STRUCT_POOL_H
+#define STRUCT_POOL_H
#include <cfg/macros.h>
#include <struct/list.h>
#define pool_free(name, elem) ADDHEAD(name, (Node*)elem)
#define pool_empty(name) ISLISTEMPTY(name)
-#endif /* MWARE_POOL_H */
+#endif /* STRUCT_POOL_H */