chiark
/
gitweb
/
~mdw
/
mLib
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Allow more characters to start words in test vector files.
[mLib]
/
darray.h
diff --git
a/darray.h
b/darray.h
index c04ca8bd24c479a6650c45359ba43a64376d37f7..f2ebe1f7f01ff6258b0737cc5a79db95128a816b 100644
(file)
--- a/
darray.h
+++ b/
darray.h
@@
-1,6
+1,6
@@
/* -*-c-*-
*
/* -*-c-*-
*
- * $Id: darray.h,v 1.
2 1999/10/29 22:59:22
mdw Exp $
+ * $Id: darray.h,v 1.
3 1999/11/05 14:32:43
mdw Exp $
*
* Dynamically growing dense arrays
*
*
* Dynamically growing dense arrays
*
@@
-30,6
+30,9
@@
/*----- Revision history --------------------------------------------------*
*
* $Log: darray.h,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: darray.h,v $
+ * Revision 1.3 1999/11/05 14:32:43 mdw
+ * Minor change in argument naming.
+ *
* Revision 1.2 1999/10/29 22:59:22 mdw
* New array adjustment macros for unsigned arguments.
*
* Revision 1.2 1999/10/29 22:59:22 mdw
* New array adjustment macros for unsigned arguments.
*
@@
-108,8
+111,8
@@
typedef struct da_base {
* Use: Declares a structure for decribing a dynamic array.
*/
* Use: Declares a structure for decribing a dynamic array.
*/
-#define DA_DECL(
atype, type)
\
- typedef struct
atype { da_base b; type *v; } atype
+#define DA_DECL(
type_v, type)
\
+ typedef struct
type_v { da_base b; type *v; } type_v
/*----- Initialization, creation and destruction --------------------------*/
/*----- Initialization, creation and destruction --------------------------*/