Blame gnulib/lib/strnlen1.h

Packit Service a2ae7a
/* Find the length of STRING + 1, but scan at most MAXLEN bytes.
Packit Service a2ae7a
   Copyright (C) 2005, 2009-2019 Free Software Foundation, Inc.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is free software: you can redistribute it and/or modify
Packit Service a2ae7a
   it under the terms of the GNU Lesser General Public License as published by
Packit Service a2ae7a
   the Free Software Foundation; either version 2.1 of the License, or
Packit Service a2ae7a
   (at your option) any later version.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is distributed in the hope that it will be useful,
Packit Service a2ae7a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2ae7a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2ae7a
   GNU Lesser General Public License for more details.
Packit Service a2ae7a
Packit Service a2ae7a
   You should have received a copy of the GNU Lesser General Public License
Packit Service a2ae7a
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2ae7a
Packit Service a2ae7a
#ifndef _STRNLEN1_H
Packit Service a2ae7a
#define _STRNLEN1_H
Packit Service a2ae7a
Packit Service a2ae7a
#include <stddef.h>
Packit Service a2ae7a
Packit Service a2ae7a
Packit Service a2ae7a
#ifdef __cplusplus
Packit Service a2ae7a
extern "C" {
Packit Service a2ae7a
#endif
Packit Service a2ae7a
Packit Service a2ae7a
Packit Service a2ae7a
/* Find the length of STRING + 1, but scan at most MAXLEN bytes.
Packit Service a2ae7a
   If no '\0' terminator is found in that many characters, return MAXLEN.  */
Packit Service a2ae7a
/* This is the same as strnlen (string, maxlen - 1) + 1.  */
Packit Service a2ae7a
extern size_t strnlen1 (const char *string, size_t maxlen)
Packit Service a2ae7a
  _GL_ATTRIBUTE_PURE;
Packit Service a2ae7a
Packit Service a2ae7a
Packit Service a2ae7a
#ifdef __cplusplus
Packit Service a2ae7a
}
Packit Service a2ae7a
#endif
Packit Service a2ae7a
Packit Service a2ae7a
Packit Service a2ae7a
#endif /* _STRNLEN1_H */