X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=odr%2Fodr_mem.c;h=2ec348a7368949a34ba1dd81256b38f877ea6c3a;hp=43f3c545f56caefe49ff94d0b749c698a57a5513;hb=c71d717ada2a9ef730d527f161eb5ba9aa641a9f;hpb=b75023664b529d1cd0dccac2deae78ddbd681369 diff --git a/odr/odr_mem.c b/odr/odr_mem.c index 43f3c54..2ec348a 100644 --- a/odr/odr_mem.c +++ b/odr/odr_mem.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: odr_mem.c,v 1.22 2003-03-11 11:03:31 adam Exp $ + * $Id: odr_mem.c,v 1.23 2003-03-18 13:34:35 adam Exp $ */ #if HAVE_CONFIG_H #include @@ -37,6 +37,11 @@ char *odr_strdup(ODR o, const char *str) return nmem_strdup(o->mem, str); } +char *odr_strdupn(ODR o, const char *str, size_t n) +{ + return nmem_strdupn(o->mem, str, n); +} + int *odr_intdup(ODR o, int v) { return nmem_intdup(o->mem, v);