ESAPI-C 1.0
The OWASP Enterprise Security API for C

authorization.h

00001 #include <stdlib.h>
00002 #include "user.h"
00003 
00004 #ifndef _AUTHORIZATION_H
00005 #define _AUTHORIZATION_H
00006 
00007 int is_authorized_for_action(user *, const char *);
00008 
00009 int is_authorized_for_data(user *, int);
00010 
00011 int is_authorized_for_file(user *, const char *);
00012 
00013 #endif
 All Data Structures Files Functions Variables Typedefs Defines