Update of /cvsroot/blob/blob/src/lib
In directory usw-pr-cvs1:/tmp/cvs-serv681
Modified Files:
Makefile.am
Added Files:
memset.c
Log Message:
Add memset() implementation.
--- NEW FILE: memset.c ---
/*
* memset.c: fill memory with a constant byte
*
* Copyright (C) 2002 Erik Mouw (J.A...@it...)
*
* $Id: memset.c,v 1.1 2002/02/15 23:08:20 erikm Exp $
*
* 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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ident "$Id: memset.c,v 1.1 2002/02/15 23:08:20 erikm Exp $"
#ifdef HAVE_CONFIG_H
# include <blob/config.h>
#endif
#include <blob/util.h>
#include <blob/types.h>
void *memset(void *dest, int c, size_t n)
{
u8 *tmp = (u8 *)dest;
while(n-- > 0)
*tmp++ = (u8)c;
return dest;
}
Index: Makefile.am
===================================================================
RCS file: /cvsroot/blob/blob/src/lib/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Makefile.am 8 Feb 2002 12:49:03 -0000 1.11
+++ Makefile.am 15 Feb 2002 23:08:20 -0000 1.12
@@ -35,6 +35,7 @@
md5.c \
md5support.c \
memcpy.c \
+ memset.c \
printf.c \
reboot.c \
serial.c \
|