File: faccess.h

package info (click to toggle)
netstd 3.07-2hamm.5
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 6,384 kB
  • ctags: 9,087
  • sloc: ansic: 72,547; cpp: 6,141; makefile: 1,681; yacc: 1,615; sh: 1,220; perl: 303; awk: 46
file content (25 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (9)
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
/* 
   faccess.h
   Version 0.00.02
   Created: June 15, 1995
   Copyright (C) 1995 Alexander O. Yuriev <alex@bach.cis.temple.edu>
                      CIS Laboratories, TEMPLE UNIVERSITY
   GNU General Public License Terms apply. All other rights reserved.
*/
    
#ifndef __FACCESS_INCLUDED__
#define __FACCESS_INCLUDED__

#include "system.h"

#define FACCESSOK	0
#define FACCESSWARN	1
#define FACCESSVIOL	2
#define	FACCESSNOTFOUND	3
#define FACCESSIOERR	4
#define FACCESSBADOWNER	5
#define FACCESSWRITABLE	6

extern int	iCheckAccess(char *, uid_t, gid_t);

#endif