Mercurial > hg > octave-kai > gnulib-hg
annotate modules/human @ 6657:25df81cf2f51
* modules/intprops: New file.
* MODULES.html.sh (Numeric conversion functions <stdlib.h>):
Add intprops.
* modules/getloadavg (Files): Remove lib/intprops.h.
(Depends-on): Add intprops.
* modules/human: Likewise.
* modules/inttostr: Likewise.
* modules/openat: Likewise.
* modules/sig2str: Likewise.
* modules/userspec: Likewise.
* modules/utimecmp: Likewise.
* modules/xnanosleep: Likewise.
* modules/xstrtol: Likewise.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Sun, 26 Feb 2006 08:45:03 +0000 |
parents | 792a53343abe |
children | 19c2e5121b2f |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 Convert a number (usually a file size) to a human readable string, possibly |
3 with K/M/G suffix. | |
4110 | 4 |
5 Files: | |
6 lib/human.h | |
7 lib/human.c | |
8 m4/ulonglong.m4 | |
9 m4/stdint_h.m4 | |
10 m4/inttypes_h.m4 | |
11 m4/uintmax_t.m4 | |
12 m4/human.m4 | |
13 | |
14 Depends-on: | |
5965
cd3c62f1332e
Support programs like Emacs that use gnulib but not gettext.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5722
diff
changeset
|
15 gettext-h |
4110 | 16 argmatch |
17 error | |
6657
25df81cf2f51
* modules/intprops: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6375
diff
changeset
|
18 intprops |
6375
792a53343abe
* modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5965
diff
changeset
|
19 xstrtoumax |
4407
95a2013d54ed
Module 'human' now depends on module 'stdbool'.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
20 stdbool |
4110 | 21 |
22 configure.ac: | |
23 gl_HUMAN | |
24 | |
25 Makefile.am: | |
26 | |
27 Include: | |
28 "human.h" | |
29 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4407
diff
changeset
|
30 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4407
diff
changeset
|
31 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4407
diff
changeset
|
32 |
4197 | 33 Maintainer: |
34 Paul Eggert |