X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr_util.c;h=ed3b07e6226f23ab6df59f0b134ef2cff81e238c;hb=fc89703038b1168a8f52b6920c50dedb9080063d;hp=7a07775ac5230839ac7452ebacc292ff77266eb5;hpb=63cafe41a93427118959a74201b3e331169a71d9;p=yaz-moved-to-github.git diff --git a/odr/odr_util.c b/odr/odr_util.c index 7a07775..ed3b07e 100644 --- a/odr/odr_util.c +++ b/odr/odr_util.c @@ -1,4 +1,6 @@ #include +#include +#include #include #include @@ -44,3 +46,21 @@ Odr_oid *odr_oiddup(ODR odr, Odr_oid *o) oid_oidcpy(r, o); return r; } + +Odr_oid *odr_getoidbystr(ODR o, char *str) +{ + int num = 1, i = 0; + char *p = str; + Odr_oid *ret; + + if (!isdigit(*str)) + return 0; + while ((p = strchr(p, '.'))) + num++, p++; + ret = odr_malloc(o, sizeof(*ret)*num); + p = str; + do + ret[i++] = atoi(p); + while ((p = strchr(p, '.'))); + return ret; +}