summaryrefslogtreecommitdiff
path: root/sys/libkern/strvalid.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/6.2.0_cvscvs2svn2007-01-111-1/+1
| | | | | | 'RELENG_6_2_0_RELEASE'. This commit was manufactured to restore the state of the 6.2-RELEASE image.
* Because the argument to strvalid() is a size_t, use a size_t to iterateRobert Watson2005-01-291-1/+1
| | | | | | | | | over the array. Submitted by: stefanf Notes: svn path=/head/; revision=140960
* Per permission from McAfee, remove clause 3 of the BSD license onRobert Watson2005-01-291-3/+0
| | | | | | | strvalid.c. Notes: svn path=/head/; revision=140959
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
| | | | Notes: svn path=/head/; revision=116189
* DBA update: used the wrong of several NAI DBAs.Robert Watson2002-03-071-1/+1
| | | | Notes: svn path=/head/; revision=91826
* Add a 'strvalid()' call to libkern. Given a character pointer, andRobert Watson2002-02-181-0/+55
buffer length, determine if the pointer is to a valid string. Currently, the only check is whether a '\0' appears in the buffer. This is useful when pulling in a structure from userland that may contain one or more strings, and validity testing must be performed on elements of the structure. When copying normal string arguments, copyinstr() is expected to be used. Notes: svn path=/head/; revision=90819