diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-22 00:31:10 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-22 00:31:10 +0000 |
commit | 787ece6c0185b4f6dba0956fa56983c1cb69ab70 (patch) | |
tree | 9a707943584905c6a3dc93b4f130b727961bc4a0 /src/ternary.h | |
parent | bcb7c689113ba5d87b1f8e88aaac5097ac7bbae2 (diff) |
Reformated text.
Diffstat (limited to 'src/ternary.h')
-rw-r--r-- | src/ternary.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ternary.h b/src/ternary.h index 5fb6d51..38bfff6 100644 --- a/src/ternary.h +++ b/src/ternary.h @@ -1,4 +1,4 @@ -/* $Id: ternary.h,v 1.3 2001-08-30 16:52:09 rjkaes Exp $ +/* $Id: ternary.h,v 1.4 2001-11-22 00:31:10 rjkaes Exp $ * * See 'ternary.c' for a detailed description. * @@ -27,7 +27,7 @@ typedef long int TERNARY; * Macros for testing for errors from the various functions. */ #define TE_ISERROR(x) ((x) < 0) /* true if x is tlib error code */ -#define TE_NONE 0 /* no errors */ +#define TE_NONE 0 /* no errors */ /* * Contains any error messages from the functions. @@ -56,7 +56,7 @@ extern char te_errbuf[256]; * Library functions. */ extern TERNARY ternary_new(void); -extern int ternary_destroy(TERNARY tno, void (*freeptr)(void *)); +extern int ternary_destroy(TERNARY tno, void (*freeptr) (void *)); #define ternary_insert(x, y, z) ternary_insert_replace(x, y, z, 0) #define ternary_replace(x, y, z) ternary_insert_replace(x, y, z, 1) |