Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/linkedhash-list @ 15142:5d4def55e128
wcscat: Move AC_LIBOBJ invocations to module description.
* m4/wcscat.m4 (gl_FUNC_WCSCAT): Move AC_LIBOBJ invocation from here...
* modules/wcscat (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 22 May 2011 18:08:09 +0200 |
parents | a8c91b846640 |
children |
rev | line source |
---|---|
6979
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 Sequential list data type implemented by a hash table with a linked list. |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/gl_linkedhash_list.h |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 lib/gl_linkedhash_list.c |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 lib/gl_anyhash_list1.h |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 lib/gl_anyhash_list2.h |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 lib/gl_anylinked_list1.h |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 lib/gl_anylinked_list2.h |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 Depends-on: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 list |
7383 | 14 stdint |
6979
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 xsize |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 configure.ac: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 Makefile.am: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 lib_SOURCES += gl_linkedhash_list.h gl_linkedhash_list.c gl_anyhash_list1.h gl_anyhash_list2.h gl_anylinked_list1.h gl_anylinked_list2.h |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 Include: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 "gl_linkedhash_list.h" |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 License: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 GPL |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 Maintainer: |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
29 Bruno Haible |
17657e80a184
Sequential list data type implemented by a hash table with a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
30 |