summaryrefslogtreecommitdiffstats
path: root/src/malloc.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-10-09 18:15:23 +0200
committerLennart Poettering <lennart@poettering.net>2008-10-09 18:15:23 +0200
commit181e9c6d5d11cb1e5d36a2777eeb233ad8ed00e5 (patch)
tree7c280968ce3fded5b325b1480d7f2440ddf93207 /src/malloc.h
parent30a4b516c8d591c11f05df38531f46452d930d2b (diff)
big pile of updates to match more what happened with libcanberra
Diffstat (limited to 'src/malloc.h')
-rw-r--r--src/malloc.h34
1 files changed, 29 insertions, 5 deletions
diff --git a/src/malloc.h b/src/malloc.h
index b969988..9281ee4 100644
--- a/src/malloc.h
+++ b/src/malloc.h
@@ -1,19 +1,43 @@
#ifndef foosydneymallochfoo
#define foosydneymallochfoo
+/***
+ This file is part of libsydney.
+
+ Copyright 2008 Lennart Poettering
+
+ libsydney is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 2.1 of the
+ License, or (at your option) any later version.
+
+ libsydney 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with libsydney. If not, see
+ <http://www.gnu.org/licenses/>.
+***/
+
#include <stdlib.h>
#include <string.h>
-#define sa_malloc malloc
-#define sa_free free
-#define sa_malloc0(size) calloc(1, (size))
-#define sa_strdup strdup
-#define sa_strndup strndup
+#include "sydney.h"
+#include "macro.h"
+void* sa_malloc(size_t size);
+void* sa_malloc0(size_t size);
+void sa_free(void *ptr);
+char *sa_strdup(const char *s);
+char *sa_strndup(const char *s, size_t n);
void* sa_memdup(const void* p, size_t size);
#define sa_new(t, n) ((t*) sa_malloc(sizeof(t)*(n)))
#define sa_new0(t, n) ((t*) sa_malloc0(sizeof(t)*(n)))
#define sa_newdup(t, p, n) ((t*) sa_memdup(p, sizeof(t)*(n)))
+char *sa_sprintf_malloc(const char *format, ...) __attribute__((format(printf, 1, 2)));
+
#endif