|
cLinkedList
A simple C library for doubly linked list creation and management
|
#include <math.h>#include <stdio.h>Go to the source code of this file.
Macros | |
| #define | MACRODEF_H |
| #define | NULL 0L |
| #define | FALSE 0 |
| #define | TRUE 1 |
| #define | DIR_SEP '/' |
| #define | round(X) (((X) >= 0) ? (int)((X)+0.5) : (int)((X)-0.5)) |
| #define | floor(X) ((long)X) |
| #define | MAXPATHLENGTH 256 |
| #define | ERRSTREAM stdout |
| #define | LOGSTREAM stdout |
| #define DIR_SEP '/' |
Definition at line 36 of file macrodef.h.
| #define ERRSTREAM stdout |
Definition at line 82 of file macrodef.h.
| #define FALSE 0 |
Definition at line 23 of file macrodef.h.
| #define floor | ( | X | ) | ((long)X) |
Definition at line 47 of file macrodef.h.
| #define LOGSTREAM stdout |
Definition at line 86 of file macrodef.h.
| #define MACRODEF_H |
Definition at line 6 of file macrodef.h.
| #define MAXPATHLENGTH 256 |
Definition at line 75 of file macrodef.h.
| #define NULL 0L |
Definition at line 19 of file macrodef.h.
| #define round | ( | X | ) | (((X) >= 0) ? (int)((X)+0.5) : (int)((X)-0.5)) |
Definition at line 43 of file macrodef.h.
| #define TRUE 1 |
Definition at line 24 of file macrodef.h.