X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_any.c;h=4cf196b221e0f8e901487865fcf0a0091a20ce01;hp=78d77ae860933cbb5857b45094bbf062891537a0;hb=6260987fdcc904b2110b88f882e66fa47e0b35dc;hpb=0a7d4354288c747883261e9f430a7e0069225a5b diff --git a/src/odr_any.c b/src/odr_any.c index 78d77ae..4cf196b 100644 --- a/src/odr_any.c +++ b/src/odr_any.c @@ -1,17 +1,20 @@ -/* - * Copyright (c) 1995-2003, Index Data +/* This file is part of the YAZ toolkit. + * Copyright (C) Index Data * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss - * - * $Id: odr_any.c,v 1.2 2004-08-11 12:15:38 adam Exp $ */ + +/** + * \file odr_any.c + * \brief Implements ODR ANY codec + */ + #if HAVE_CONFIG_H #include #endif #include "odr-priv.h" -/* +/** * This is a catch-all type. It stuffs a random ostring (assumed to be properly * encoded) into the stream, or reads a full data element. Implicit tagging * does not work, and neither does the optional flag, unless the element @@ -20,17 +23,26 @@ int odr_any(ODR o, Odr_any **p, int opt, const char *name) { if (o->error) - return 0; + return 0; if (o->direction == ODR_PRINT) { - odr_prname(o, name); - odr_printf(o, "ANY (len=%d)\n", (*p)->len); - return 1; + odr_prname(o, name); + odr_printf(o, "ANY (len=%d)\n", (*p)->len); + return 1; } if (o->direction == ODR_DECODE) - *p = (Odr_oct *)odr_malloc(o, sizeof(**p)); + *p = (Odr_oct *)odr_malloc(o, sizeof(**p)); if (ber_any(o, p)) - return 1; + return 1; *p = 0; return odr_missing(o, opt, name); } +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +