X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_null.c;h=7797e13692fe1a050e978104f7b2c94af4975a84;hp=b0db7f3f80a087b386181644d475c1a7d1fde077;hb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505;hpb=c6e47cbbff56f39f6d81b079ebaeac41d793d4d9 diff --git a/src/ber_null.c b/src/ber_null.c index b0db7f3..7797e13 100644 --- a/src/ber_null.c +++ b/src/ber_null.c @@ -1,9 +1,16 @@ /* - * Copyright (c) 1995-2003, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * - * $Id: ber_null.c,v 1.1 2003-10-27 12:21:30 adam Exp $ + * $Id: ber_null.c,v 1.4 2005-06-25 15:46:03 adam Exp $ + */ + +/** + * \file ber_null.c + * \brief Implements ber_null + * + * This source file implements BER encoding and decoding of + * the NULL type. */ #if HAVE_CONFIG_H #include @@ -11,8 +18,8 @@ #include "odr-priv.h" -/* - * BER-en/decoder for NULL type. +/** + * ber_null: BER-en/decoder for NULL type. */ int ber_null(ODR o) { @@ -40,7 +47,18 @@ int ber_null(ODR o) fprintf(stderr, "[NULL]\n"); #endif return 1; - case ODR_PRINT: return 1; - default: odr_seterror(o, OOTHER, 13); return 0; + case ODR_PRINT: + return 1; + default: + odr_seterror(o, OOTHER, 13); + return 0; } } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +