From 16720e5ffa2f10c5a969c4027ac570ce46832ea3 Mon Sep 17 00:00:00 2001 From: "Robert S. French" Date: Wed, 10 Jun 1987 08:34:32 +0000 Subject: Initial revision --- lib/ZPeekNot.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 lib/ZPeekNot.c (limited to 'lib/ZPeekNot.c') diff --git a/lib/ZPeekNot.c b/lib/ZPeekNot.c new file mode 100644 index 0000000..9168214 --- /dev/null +++ b/lib/ZPeekNot.c @@ -0,0 +1,33 @@ +/* This file is part of the Project Athena Zephyr Notification System. + * It contains source for ZPeekNotice function. + * + * Created by: Robert French + * + * $Source$ + * $Author$ + * + * Copyright (c) 1987 by the Massachusetts Institute of Technology. + * For copying and distribution information, see the file + * "mit-copyright.h". + */ +/* $Header$ */ + +#include + +#include + +Code_t ZPeekNotice(buffer,buffer_len,notice,auth) + ZPacket_t buffer; + int buffer_len; + ZNotice_t *notice; + int *auth; +{ + int len; + Code_t retval; + + if ((retval = ZPeekPacket(buffer,buffer_len,&len)) != + ZERR_NONE) + return (retval); + + return (ZParseNotice(buffer,len,notice,auth)); +} -- cgit v1.2.3