summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/getcap.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* update NAME section to include all documented functions,jmc2015-11-101-3/+3
| | | | | | or otherwise change Dt to reflect the name of an existing function; feedback/ok schwarze
* Correct the sentence in the BUGS section. Colon chars are usable as ayasuoka2014-07-121-3/+6
| | | | | | string value and usage of it in type is documented in the other section. ok jmc
* Obvious .Xr fixes, found while testing mandocdb(8).schwarze2014-01-201-5/+5
|
* Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarzetedu2013-06-051-3/+3
|
* update vt100 example to vt200, as vt100 apparently is no longer in thejmc2011-09-141-6/+6
| | | | | | | termcap database; from Nils Anspach ok nicm
* fix some spacing issues; noted by kristapsjmc2010-07-271-7/+6
|
* Every .Bl requires .It, even when using -column.schwarze2010-02-181-13/+13
| | | | | | | Found by and unbreaking the build with mandoc(1). While here, properly escape blanks inside columns and use "backslash" instead of "back slash". OK jmc@
* convert to new .Dd format;jmc2007-05-311-2/+2
|
* typo from jan niemann; ok ottojmc2006-05-091-2/+2
|
* - sync prototypes and header file excerpts to realityjaredy2005-07-221-9/+9
| | | | | | | | | - many grammar, punctuation, macro, layout, spelling/typos, rewording, etc. fixes - avoid first person - sprinkle crossrefs where relevant help & ok jmc
* Be correct in our man pages when talking about NUL termination (that is,cloder2005-02-251-2/+2
| | | | | termination with '\0') vs. null termination. Input from krw@, jaredy@, jmc@. OK deraadt@
* more display/list fixes, and a little whitespace;jmc2004-04-161-2/+1
|
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
| | | | rescinded 22 July 1999. Proofed by myself and Theo.
* - clean up macro abusejmc2003-05-301-2/+2
| | | | | - section reorder - merge COMPATIBILITY
* typos;jmc2003-05-031-4/+4
| | | | ok millert@
* Lies, damn lies and getcap(3). The description for cgetclose() wasmillert2002-06-281-4/+12
| | | | | | completely wrong and has apparently caused people to believe that cgetclose() frees memory allocated by cgetent() which is *not* the case.
* Initial cleanup:mpech2002-04-301-2/+2
| | | | | | | | | | | | o) remove extra space in the end of line; o) remove extra blank lines in the end of file; o) remove .Pp before .Ss; o) CAVEAT -> CAVEATS; o) fix usage of .Fa; o) <blank-line> -> .Pp; o) wrap long lines; millert@ ok
* Add new cgetusedb() function to toggle reading of .db files in getcap(3).millert2001-06-181-2/+24
| | | | | | Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ----------------------------------------------------------------------
* Various repairs, mostly to get rid of short lines.aaron2000-12-241-11/+6
|
* Repairs, mostly removing hard sentence breaks.aaron2000-04-181-36/+53
|
* Do not leave `(' characters dangling at the end of lines; instead, use theaaron2000-03-061-5/+5
| | | | appropriate mdoc macros to handle these cases.
* In Unix land we prefer "whitespace" to "white space" or "white-space". Ataaron2000-03-041-2/+2
| | | | least, this is the impression I get from looking at a lot of Perl docs.
* - remove all trailing whitespaceaaron1999-07-091-42/+42
| | | | | | | | | | * except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
* remove extra comma from .Dd arguments: "Month ##, ####" is the correct format,aaron1999-07-021-2/+2
| | | | not "Month, ##, ####"
* change some .Em/.Va to .Li, looks niceraaron1999-06-051-2/+2
|
* After some constructive criticism from pjanzen@ and some e-mail tag:aaron1999-06-041-17/+11
| | | | | | | | | | | | | | | - only use the .Dv NULL form when referring explicitly to a function argument or return value - otherwise, use these forms: o non-null o null-terminated (hyphenated form for predicate adjective) o else, null terminated, or null terminate, whichever the case o null pointer, null byte, null string, etc. - may use NUL to refer to an ASCII NUL, but it doesn't need a .Tn macro In general, capitalizing the word "null" everywhere is unnecessary and makes the man pages harder to read. The above is consistent with popular programming texts (i.e., K&R, Stevens).
* use \-1, not -1, to change the meaning of `-' to minus sign from hyphen;aaron1999-06-031-5/+5
| | | | pjanzen@
* repairs; go back over some old files, because we should properly distinguishaaron1999-05-291-3/+2
| | | | | between NUL and NULL, i.e., don't use the .Dv (defined variable) macro when referring to an ASCII NUL
* repairsaaron1999-05-291-125/+177
|
* sync cgetset() Fn definition with prototype from stdlib.haaron1999-05-271-2/+2
|
* correct some Xr's which referred to the wrong man page sectionsaaron1999-05-101-4/+4
|
* make function names the correct casederaadt1999-02-271-2/+2
|
* constify getcap(3). This fixes a warning in libcurses and doesn'tmillert1999-02-251-7/+7
| | | | | really change the API since those parameters that was been constified really are not modified by getcap(3) routines.
* man page repairs; aaron@ug.cs.dal.caderaadt1998-08-291-2/+2
|
* do not needlessly uppercase function namesderaadt1998-06-081-19/+19
|
* for i in `find . -name \*.[123456789] -exec grep '^.Dd ' {} /dev/null \; | \deraadt1997-05-301-2/+2
| | | | | | | grep '"' | cut -d':' -f1`; do sed -e '/^.Dd /s/"//g' -e '/^.Dd /s/\(^.Dd [A-Za-z]*\) \(.*\)$/\1, \2/' <$i >x cat x > $i done
* Fix RCS idstholo1996-08-191-3/+1
| | | | Make sure everything uses {SYS,}LIBC_SCCS properly
* initial import of NetBSD treederaadt1995-10-181-0/+513