aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-memory.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@HelixCode.com>2000-11-21 22:31:41 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-11-21 22:31:41 +0800
commitbb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d (patch)
treee55d0687a891cc3c98b7dd6eccd0c200ff429767 /e-util/e-memory.c
parent8d9d1e00dd89221488084e51b4940469e8db4f4e (diff)
downloadgsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.tar
gsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.tar.gz
gsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.tar.bz2
gsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.tar.lz
gsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.tar.xz
gsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.tar.zst
gsoc2013-evolution-bb09c40e2f9dcca5a1dbf55f5bbc572d8b7bfb9d.zip
New function to strdup into a mempool.
2000-11-21 Not Zed <NotZed@HelixCode.com> * e-memory.c (e_mempool_strdup): New function to strdup into a mempool. svn path=/trunk/; revision=6630
Diffstat (limited to 'e-util/e-memory.c')
-rw-r--r--e-util/e-memory.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/e-util/e-memory.c b/e-util/e-memory.c
index 2a3cd55771..37ec181ce9 100644
--- a/e-util/e-memory.c
+++ b/e-util/e-memory.c
@@ -427,6 +427,16 @@ void *e_mempool_alloc(MemPool *pool, int size)
}
}
+char *e_mempool_strdup(EMemPool *pool, const char *str)
+{
+ char *out;
+
+ out = e_mempool_alloc(pool, strlen(str));
+ strcpy(out, str);
+
+ return out;
+}
+
/**
* e_mempool_flush:
* @pool: