o Update dd(1) to accept capital letters (B, K, M, G) as size modifiers.
[dragonfly.git] / contrib / opie / libmissing / memset.c
blob678c4411e64fe495eadaefa91d40761b9c7aab0d
1 /* memcpy.c: A replacement for the memcpy function
3 %%% copyright-cmetz
4 This software is Copyright 1996 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 2 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
9 History:
11 Created by cmetz for OPIE 2.2.
13 #include "opie_cfg.h"
14 #include "opie.h"
16 VOIDPTR *memset FUNCTION((d, v, n), unsigned char *d AND int v AND int n)
18 unsigned char *d2 = d;
19 while(n--) (*d2++) = (unsigned char)v;
20 return d;