diff options
author | Guillem Jover <guillem@debian.org> | 2009-07-15 12:14:29 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2009-07-15 21:16:08 +0200 |
commit | 01d05324e0669e3f3585d6aacde696333e49f087 (patch) | |
tree | fe915ca6d1fda2d2a97bd9635cfbdae16caad8fa /lib/compat/strnlen.c | |
parent | 439f77d84e2d98bfc363fa5b21cae97225df2cef (diff) | |
download | dpkg-01d05324e0669e3f3585d6aacde696333e49f087.tar.gz |
Move libraries to subdirectories under lib/
This will allow to use the same include path than the future system
one, for example “#include <dpkg/dpkg.h>”. It also unclutters the source
topdir.
Diffstat (limited to 'lib/compat/strnlen.c')
-rw-r--r-- | lib/compat/strnlen.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/compat/strnlen.c b/lib/compat/strnlen.c new file mode 100644 index 000000000..09ba788ab --- /dev/null +++ b/lib/compat/strnlen.c @@ -0,0 +1,33 @@ +/* Find the length of STRING, but scan at most MAXLEN characters. + Copyright (C) 2005, 2006 Free Software Foundation, Inc. + Written by Simon Josefsson. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include "strnlen.h" + +/* Find the length of STRING, but scan at most MAXLEN characters. + If no '\0' terminator is found in that many characters, return MAXLEN. */ + +size_t +strnlen (const char *string, size_t maxlen) +{ + const char *end = memchr (string, '\0', maxlen); + return end ? (size_t) (end - string) : maxlen; +} |