1
0

lparse.h 483 B

123456789101112131415161718192021222324252627
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  4. * All rights reserved.
  5. * END COPYRIGHT BLOCK **/
  6. /*
  7. * This grammar is intended to parse the version 3.0 ACL
  8. * and output an ACLParseACE_t structure.
  9. */
  10. #ifndef LPARSE_H
  11. #define LPARSE_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. extern int aclPushListHandle(ACLListHandle_t *handle);
  16. extern int aclparse(void);
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif