ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme_memory.h
Revision: 1.2
Committed: Sat Jul 21 01:29:07 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
- moved to new documentation system
- fixed small build error

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2005 Atheme Development Group
3 pippijn 1.2 * Rights to this code are as documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * Memory stuff.
6     *
7 pippijn 1.2 * $Id: atheme_memory.h,v 1.1 2007-07-19 08:24:50 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef __CLAROBASEMEMORY
11     #define __CLAROBASEMEMORY
12    
13     E void *smalloc (size_t size);
14     E void *scalloc (size_t elsize, size_t els);
15     E void *srealloc (void *oldptr, size_t newsize);
16     E char *sstrdup (const char *s);
17     E char *sstrndup (const char *s, int len);
18    
19     #endif