Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/mbsstr @ 16749:2c1499f688aa
logf-ieee: Fix test whether logf works.
* m4/logf.m4 (gl_FUNC_LOGF): Fix typo in test program.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 01 Apr 2012 19:31:01 +0200 |
parents | 23f58a4ffca0 |
children | 1f14c6dd175d |
rev | line source |
---|---|
8088
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 mbsstr() function: search for a substring in a string. |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/mbsstr.c |
9561
d722bd5e44bd
Unify 5 copies of the KMP code.
Bruno Haible <bruno@clisp.org>
parents:
8948
diff
changeset
|
6 lib/str-kmp.h |
8088
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 Depends-on: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 mbuiter |
8133
678421bdc3ae
Ensure O(n) worst-case complexity of mbsstr.
Bruno Haible <bruno@clisp.org>
parents:
8088
diff
changeset
|
10 stdbool |
8088
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 string |
8133
678421bdc3ae
Ensure O(n) worst-case complexity of mbsstr.
Bruno Haible <bruno@clisp.org>
parents:
8088
diff
changeset
|
12 mbslen |
8948
a162347a0232
Update after allocsa -> malloca renaming.
Bruno Haible <bruno@clisp.org>
parents:
8145
diff
changeset
|
13 malloca |
8133
678421bdc3ae
Ensure O(n) worst-case complexity of mbsstr.
Bruno Haible <bruno@clisp.org>
parents:
8088
diff
changeset
|
14 strnlen |
8088
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 configure.ac: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 gl_STRING_MODULE_INDICATOR([mbsstr]) |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 Makefile.am: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 lib_SOURCES += mbsstr.c |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 Include: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 <string.h> |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 License: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 LGPL |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 Maintainer: |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
29 Bruno Haible |
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
30 |