diff options
author | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/include/lib | |
parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/include/lib')
-rw-r--r-- | src/include/lib/dllist.h | 4 | ||||
-rw-r--r-- | src/include/lib/fstack.h | 18 | ||||
-rw-r--r-- | src/include/lib/hasht.h | 4 | ||||
-rw-r--r-- | src/include/lib/lispsort.h | 4 | ||||
-rw-r--r-- | src/include/lib/qsort.h | 4 | ||||
-rw-r--r-- | src/include/lib/stringinfo.h | 4 |
6 files changed, 19 insertions, 19 deletions
diff --git a/src/include/lib/dllist.h b/src/include/lib/dllist.h index 09428512a08..7c3707afcab 100644 --- a/src/include/lib/dllist.h +++ b/src/include/lib/dllist.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * dllist.h-- + * dllist.h * simple doubly linked list primitives * the elements of the list are void* so the lists can contain * anything @@ -26,7 +26,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dllist.h,v 1.8 1998/09/01 04:36:15 momjian Exp $ + * $Id: dllist.h,v 1.9 1999/02/13 23:21:30 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/fstack.h b/src/include/lib/fstack.h index d71fe6ce422..bf2e051561a 100644 --- a/src/include/lib/fstack.h +++ b/src/include/lib/fstack.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fstack.h-- + * fstack.h * Fixed format stack definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fstack.h,v 1.6 1998/09/01 04:36:16 momjian Exp $ + * $Id: fstack.h,v 1.7 1999/02/13 23:21:30 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ /* - * FixedItem -- + * FixedItem * Fixed format stackable item chain component. * * Note: @@ -43,7 +43,7 @@ struct FixedItemData }; /* - * FixedStack -- + * FixedStack * Fixed format stack. */ typedef struct FixedStackData @@ -56,7 +56,7 @@ typedef struct FixedStackData typedef FixedStackData *FixedStack; /* - * FixedStackInit -- + * FixedStackInit * Iniitializes stack for structures with given fixed component offset. * * Exceptions: @@ -65,7 +65,7 @@ typedef FixedStackData *FixedStack; extern void FixedStackInit(FixedStack stack, Offset offset); /* - * FixedStackPop -- + * FixedStackPop * Returns pointer to top structure on stack or NULL if empty stack. * * Exceptions: @@ -74,7 +74,7 @@ extern void FixedStackInit(FixedStack stack, Offset offset); Pointer FixedStackPop(FixedStack stack); /* - * FixedStackPush -- + * FixedStackPush * Places structure associated with pointer onto top of stack. * * Exceptions: @@ -84,7 +84,7 @@ Pointer FixedStackPop(FixedStack stack); extern void FixedStackPush(FixedStack stack, Pointer pointer); /* - * FixedStackGetTop -- + * FixedStackGetTop * Returns pointer to top structure of a stack. This item is not poped. * * Note: @@ -97,7 +97,7 @@ extern void FixedStackPush(FixedStack stack, Pointer pointer); extern Pointer FixedStackGetTop(FixedStack stack); /* - * FixedStackGetNext -- + * FixedStackGetNext * Returns pointer to next structure after pointer of a stack. * * Note: diff --git a/src/include/lib/hasht.h b/src/include/lib/hasht.h index f23197c0b90..3f56bf640ca 100644 --- a/src/include/lib/hasht.h +++ b/src/include/lib/hasht.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * hasht.h-- + * hasht.h * hash table related functions that are not directly supported * under utils/hash. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hasht.h,v 1.6 1998/09/01 04:36:17 momjian Exp $ + * $Id: hasht.h,v 1.7 1999/02/13 23:21:31 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/lispsort.h b/src/include/lib/lispsort.h index a75c3e1e145..a48d274624b 100644 --- a/src/include/lib/lispsort.h +++ b/src/include/lib/lispsort.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * lispsort.h-- + * lispsort.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: lispsort.h,v 1.4 1998/09/01 04:36:19 momjian Exp $ + * $Id: lispsort.h,v 1.5 1999/02/13 23:21:31 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/qsort.h b/src/include/lib/qsort.h index 9d27da8f573..d7bd348f862 100644 --- a/src/include/lib/qsort.h +++ b/src/include/lib/qsort.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * qsort.h-- + * qsort.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: qsort.h,v 1.6 1998/09/01 04:36:20 momjian Exp $ + * $Id: qsort.h,v 1.7 1999/02/13 23:21:32 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/stringinfo.h b/src/include/lib/stringinfo.h index a23148c6bd5..cf766521ecb 100644 --- a/src/include/lib/stringinfo.h +++ b/src/include/lib/stringinfo.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * stringinfo.h-- + * stringinfo.h * Declarations/definitons for "string" functions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.h,v 1.9 1998/12/18 14:45:09 wieck Exp $ + * $Id: stringinfo.h,v 1.10 1999/02/13 23:21:32 momjian Exp $ * *------------------------------------------------------------------------- */ |