strlen.c
794 Bytes
/*
=============================================================================
Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
$RCSfile: strlen.c,v $
$Revision: 1.1.1.1 $
$Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:_nstrlen
-----------------------------------------------------------------------------
書式: #include <string.h>
size_t _nstrlen(const char *string);
引数: string 文字列バッファ
戻り値:string 文字列の長さ
説明: string の文字列の長さを返す
-----------------------------------------------------------------------------
*/
#include "string.h"
size_t _nstrlen(const char *string)
{
size_t len = 0;
while(*string++) len++;
return len;
}