]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - zephyr/lib/ZCmpUIDP.c
unpack of new upstream
[1ts-debian.git] / zephyr / lib / ZCmpUIDP.c
1 /* This file is part of the Project Athena Zephyr Notification System.
2  * It contains source for the ZCompareUIDPred function.
3  *
4  *      Created by:     Robert French
5  *
6  *      $Id: ZCmpUIDP.c,v 1.7 1999/01/22 23:19:04 ghudson Exp $
7  *
8  *      Copyright (c) 1987 by the Massachusetts Institute of Technology.
9  *      For copying and distribution information, see the file
10  *      "mit-copyright.h". 
11  */
12
13 #ifndef lint
14 static char rcsid_ZCompareUIDPred_c[] = "$Id: ZCmpUIDP.c,v 1.7 1999/01/22 23:19:04 ghudson Exp $";
15 #endif
16
17 #include <internal.h>
18
19 int ZCompareUIDPred(notice, uid)
20     ZNotice_t *notice;
21     void *uid;
22 {
23     return (ZCompareUID(&notice->z_uid, (ZUnique_Id_t *) uid));
24 }
25
26 int ZCompareMultiUIDPred(notice, uid)
27     ZNotice_t *notice;
28     void *uid;
29 {
30     return (ZCompareUID(&notice->z_multiuid, (ZUnique_Id_t *) uid));
31 }