summaryrefslogtreecommitdiff
path: root/sys/kern/subr_scanf.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix mis-indentation.Poul-Henning Kamp2002-10-021-1/+1
| | | | | | | Spotted by: FlexeLint Notes: svn path=/head/; revision=104363
* Change the prototype of the strto* routines to make the secondArchie Cobbs1999-11-241-2/+2
| | | | | | | | | | | | | | parameter a char ** instead of a const char **. This make these kernel routines consistent with the corresponding libc userland routines. Which is actually 'correct' is debatable, but consistency and following the spec was deemed more important in this case. Reviewed by (in concept): phk, bde Notes: svn path=/head/; revision=53648
* Move strto{u}[ql]() into their own libkern files.Poul-Henning Kamp1999-11-031-314/+0
| | | | | | | Urged by: bde Notes: svn path=/head/; revision=52845
* Move isfoo() and friends to the newly created sys/ctype.h.Poul-Henning Kamp1999-11-031-0/+1
| | | | | | | Urged by: bde Notes: svn path=/head/; revision=52843
* Consolidate some of the various ctype(3) macros in one location.Archie Cobbs1999-11-021-8/+0
| | | | Notes: svn path=/head/; revision=52815
* Add strtol & strtoul to kernel. Derived from libc versions.Poul-Henning Kamp1999-11-011-0/+157
| | | | Notes: svn path=/head/; revision=52757
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-1/+0
| | | | | | | Submitted by: phk Notes: svn path=/head/; revision=52128
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Cast pointers to uintptr_t instead of casting them to u_long, and/or viceBruce Evans1999-08-241-2/+2
| | | | | | | versa. Cosmetic. Notes: svn path=/head/; revision=50275
* Only needed to cast array index from char to unsigned char, did notMatthew Dillon1999-02-141-3/+3
| | | | | | | | also have to cast it to int. (int)(unsigned char)char_exp -> (unsigned char)char_exp. Notes: svn path=/head/; revision=44016
* cleanup warnings by propogating const char pointers properly.Matthew Dillon1999-01-291-3/+3
| | | | Notes: svn path=/head/; revision=43383
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-281-3/+3
| | | | | | | kernel compile Notes: svn path=/head/; revision=43311
* Fix array index of signed char to cast to unsigned char and then to int.Matthew Dillon1999-01-271-9/+9
| | | | | | | Also general const cleanup. Notes: svn path=/head/; revision=43300
* Add sscanf/vsscanf/strtoq/strtouq to the kernel. Initially these will be usedMike Smith1999-01-151-0/+793
for parsing kernel environment values, although they have utility elsewhere. Notes: svn path=/head/; revision=42680