Mercurial > hg > octave-kai > gnulib-hg
annotate modules/ftoastr @ 14310:00537d144c48
New module 'iswblank'.
* lib/wctype.in.h (iswblank): Don't declare if GNULIB_ISWBLANK is 0.
* modules/iswblank: New file.
* modules/wctype-h (Files): Remove lib/iswblank.c.
(Makefile.am): Substitute GNULIB_ISWBLANK.
* m4/iswblank.m4: New file, partially extracted from m4/wctype_h.m4.
* m4/wctype_h.m4 (gl_WCTYPE_MODULE_INDICATOR): New macro.
(gl_WCTYPE_H_DEFAULTS): New macro.
(gl_WCTYPE_H): Require it. Remove iswblank related code.
* modules/iswblank-tests: New file.
* tests/test-iswblank.c: New file, extraced from tests/test-wctype-h.c.
* tests/test-wctype-h.c (main): Remove iswblank tests.
* tests/test-wctype-h-c++.cc: Guard the signature test of iswblank.
* doc/posix-functions/iswblank.texi: Mention module 'iswblank' instead
of 'wctype-h'.
* NEWS: Mention the change.
* modules/mbchar (Depends-on): Add iswblank.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 06 Feb 2011 22:07:24 +0100 |
parents | d5718604e475 |
children | fc8a3cc2baa8 |
rev | line source |
---|---|
13875
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
1 Description: |
14169
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
13882
diff
changeset
|
2 Convert float to accurate string. |
13875
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
3 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
4 Files: |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
5 lib/ftoastr.h |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
6 lib/ftoastr.c |
13878
f120aacf676a
ftoastr: port to hosts lacking strtof and strtold
Paul Eggert <eggert@cs.ucla.edu>
parents:
13875
diff
changeset
|
7 m4/c-strtod.m4 |
13875
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
8 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
9 Depends-on: |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
10 intprops |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
11 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
12 configure.ac: |
13878
f120aacf676a
ftoastr: port to hosts lacking strtof and strtold
Paul Eggert <eggert@cs.ucla.edu>
parents:
13875
diff
changeset
|
13 AC_REQUIRE([gl_C99_STRTOLD]) |
13875
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
14 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
15 Makefile.am: |
14169
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
13882
diff
changeset
|
16 lib_SOURCES += ftoastr.c |
13875
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
17 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
18 Include: |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
19 "ftoastr.h" |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
20 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
21 License: |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
22 GPL |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
23 |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
24 Maintainer: |
ae9b5d5d4e18
ftoastr: new module, for lossless conversion of floats to short strings
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
25 Paul Eggert |