File: acl.h

package info (click to toggle)
zephyr 2.0.4-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,792 kB
  • ctags: 2,989
  • sloc: ansic: 29,327; sh: 1,431; makefile: 955; yacc: 498; lex: 137; lisp: 127
file content (27 lines) | stat: -rw-r--r-- 759 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* This file is part of the Project Athena Zephyr Notification System.
 * It contains definitions for the ACL library
 *
 *	Created by:	John T. Kohl
 *
 *	$Source: /mit/zephyr/repository/zephyr/server/acl.h,v $
 *	$Author: ghudson $
 *	$Header: /mit/zephyr/repository/zephyr/server/acl.h,v 3.1 1995/06/30 22:10:57 ghudson Exp $
 *
 *	Copyright (c) 1987 by the Massachusetts Institute of Technology.
 *	For copying and distribution information, see the file
 *	"mit-copyright.h". 
 */

#include <zephyr/mit-copyright.h>

#ifndef	__ACL__
#define	__ACL__

int acl_add __P((char *, char *));
int acl_check __P((char *, char *));
int acl_delete __P((char *, char *));
int acl_initialize __P((char *, int));
void acl_cache_reset __P((void));

#endif /* __ACL__ */