gbdk-releases/sdcc/device/lib/_strlen.c

36 lines
1.3 KiB
C
Raw Permalink Normal View History

2015-01-10 16:25:06 +01:00
/*-------------------------------------------------------------------------
_strcpy.c - part of string library functions
Written By - Sandeep Dutta . sandeep.dutta@usa.net (1999)
2015-01-10 16:25:09 +01:00
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by the
2015-01-10 16:25:06 +01:00
Free Software Foundation; either version 2, or (at your option) any
later version.
2015-01-10 16:25:09 +01:00
This library is distributed in the hope that it will be useful,
2015-01-10 16:25:06 +01:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-01-10 16:25:09 +01:00
GNU Library General Public License for more details.
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
You should have received a copy of the GNU Library General Public License
2015-01-10 16:25:06 +01:00
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
what you give them. Help stamp out software-hoarding!
-------------------------------------------------------------------------*/
#include "string.h"
#define NULL (void *)0
2015-01-10 16:25:09 +01:00
int strlen ( char * str )
2015-01-10 16:25:06 +01:00
{
register int i = 0 ;
while (*str++)
i++ ;
return i;
}