• R/O
  • HTTP
  • SSH
  • HTTPS

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

File Info

修訂. aaaeb63d738f000d38c0b01eeabe30e1fa424fe4
大小 585 bytes
時間 2015-12-17 00:02:37
作者 Yoshinori Sato
Log Message

Merge branch 'master' of ssh://sourceware.org/git/binutils-gdb

Content

/* Portable version of strnlen.
   This function is in the public domain.  */

/*

@deftypefn Supplemental size_t strnlen (const char *@var{s}, size_t @var{maxlen})

Returns the length of @var{s}, as with @code{strlen}, but never looks
past the first @var{maxlen} characters in the string.  If there is no
'\0' character in the first @var{maxlen} characters, returns
@var{maxlen}.

@end deftypefn

*/

#include "config.h"

#include <stddef.h>

size_t
strnlen (const char *s, size_t maxlen)
{
  size_t i;

  for (i = 0; i < maxlen; ++i)
    if (s[i] == '\0')
      break;
  return i;
}