Use source files which have makedoc markup, but aren't processed or included.

These source files have makedoc markup, but aren't listed to be chewed by
makedoc. I am assuming that is accidental.

Future work: Note that stdio/fseeko.c, stdio/ftello.c and common/s_isnand.c have
makedoc markup, but duplicate stdio/fseek.c, stdio/ftell.c and common/s_isnan.c
respectively.

2015-06-23  Jon Turney  <jon.turney@dronecode.org.uk>

	* libc/ctype/Makefile.am (CHEWOUT_FILES): Add isblank.def.
	* libc/ctype/ctype.tex: Include isblank and add to menu.
	* libc/posix/Makefile.am (CHEWOUT_FILES): Add posix_spawn.def.
	* libc/posix/posix.tex: Include posix_spawn and add to menu.
	* libc/stdio64/Makefile.am (CHEWOUT_FILES): Add fdopen.def.
	* libc/stdio64/stdio64.tex: Include fdopen64 and add to menu.
	* libc/stdio64/fdopen64.c: Improve one-line description.
	* libc/string/Makefile.am (CHEWOUT_FILES): Add strchrnul.def.
	* libc/string/strings.tex: Include strchrnul and add to menu.

Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
Jon TURNEY 2015-06-23 14:35:00 +01:00
parent a4dd7dd87c
commit 153385d847
10 changed files with 34 additions and 4 deletions

View File

@ -1,3 +1,15 @@
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
* libc/ctype/Makefile.am (CHEWOUT_FILES): Add isblank.def.
* libc/ctype/ctype.tex: Include isblank and add to menu.
* libc/posix/Makefile.am (CHEWOUT_FILES): Add posix_spawn.def.
* libc/posix/posix.tex: Include posix_spawn and add to menu.
* libc/stdio64/Makefile.am (CHEWOUT_FILES): Add fdopen.def.
* libc/stdio64/stdio64.tex: Include fdopen64 and add to menu.
* libc/stdio64/fdopen64.c: Improve one-line description.
* libc/string/Makefile.am (CHEWOUT_FILES): Add strchrnul.def.
* libc/string/strings.tex: Include strchrnul and add to menu.
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
* libc/stdlib/stdlib.tex: Include itoa and utoa, and add to menu.

View File

@ -67,6 +67,7 @@ CHEWOUT_FILES= \
isalnum.def \
isalpha.def \
isascii.def \
isblank.def \
iscntrl.def \
isdigit.def \
islower.def \

View File

@ -10,6 +10,7 @@ The header file @file{ctype.h} defines the macros.
* isalnum:: Alphanumeric character predicate
* isalpha:: Alphabetic character predicate
* isascii:: ASCII character predicate
* isblank:: Blank character predicate
* iscntrl:: Control character predicate
* isdigit:: Decimal digit predicate
* islower:: Lowercase character predicate
@ -50,6 +51,9 @@ The header file @file{ctype.h} defines the macros.
@page
@include ctype/isascii.def
@page
@include ctype/isblank.def
@page
@include ctype/iscntrl.def

View File

@ -52,7 +52,8 @@ endif # USE_LIBTOOL
include $(srcdir)/../../Makefile.shared
CHEWOUT_FILES = \
popen.def
popen.def \
posix_spawn.def
SUFFIXES = .def

View File

@ -6,8 +6,11 @@ not by C. Each function documents which header to use.
@menu
* popen:: Create a stream tied to a child process
* posix_spawn:: Spawn a process
@end menu
@page
@include posix/popen.def
@page
@include posix/posix_spawn.def

View File

@ -43,6 +43,7 @@ include $(srcdir)/../../Makefile.shared
AM_CFLAGS = -I $(srcdir)/../stdio
CHEWOUT_FILES = \
fdopen64.def \
fgetpos64.def \
fopen64.def \
freopen64.def \

View File

@ -1,6 +1,6 @@
/*
FUNCTION
<<fdopen64>>---turn open file into a stream
<<fdopen64>>---turn open large file into a stream
INDEX
fdopen64

View File

@ -9,7 +9,8 @@ system, but these functions provide a uniform interface.
The corresponding declarations are in @file{stdio.h}.
@menu
@menu
* fdopen64:: Turn open large file into a stream
* fopen64:: Open a large file
* freopen64:: Open a large file using an existing file descriptor
* fsetpos64:: Restore position of a large stream or file
@ -19,6 +20,9 @@ The corresponding declarations are in @file{stdio.h}.
* tmpfile64:: Create a temporary large file
@end menu
@page
@include stdio64/fdopen64.def
@page
@include stdio64/fopen64.def

View File

@ -143,7 +143,7 @@ wcsncmp.def wcsncpy.def wcsnlen.def wcspbrk.def \
wcsrchr.def wcsspn.def wcsstr.def wcstok.def \
wcswidth.def wcsxfrm.def wcwidth.def wmemchr.def \
wmemcmp.def wmemcpy.def wmemmove.def wmemset.def \
memmem.def memrchr.def rawmemchr.def
memmem.def memrchr.def rawmemchr.def strchrnul.def
SUFFIXES = .def

View File

@ -27,6 +27,7 @@ managing areas of memory. The corresponding declarations are in
* strcasestr:: Find string segment ignoring case
* strcat:: Concatenate strings
* strchr:: Search for character in string
* strchrnul:: Search for character in string
* strcmp:: Character string compare
* strcoll:: Locale-specific character string compare
* strcpy:: Copy string
@ -117,6 +118,9 @@ managing areas of memory. The corresponding declarations are in
@page
@include string/strchr.def
@page
@include string/strchrnul.def
@page
@include string/strcmp.def