2 * Copyright (c) 1997, Index Data.
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.2 1998-02-11 11:53:36 adam
8 * Changed code so that it compiles as C++.
10 * Revision 1.1 1997/09/17 12:10:42 adam
18 char *nmem_strdup (NMEM mem, const char *src)
20 char *dst = (char *)nmem_malloc (mem, strlen(src)+1);