parse.h 556 B

1234567891011121314151617181920212223242526272829
  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. *
  6. * License: GPL (version 3 or any later version).
  7. * See LICENSE for details.
  8. * END COPYRIGHT BLOCK **/
  9. #ifdef HAVE_CONFIG_H
  10. # include <config.h>
  11. #endif
  12. /*
  13. * module private routines for handling the yacc based
  14. * ACL Parser.
  15. */
  16. #ifndef PARSE_H
  17. #define PARSE_H
  18. NSPR_BEGIN_EXTERN_C
  19. extern int acl_PushListHandle(ACLListHandle_t *handle);
  20. extern int acl_Parse(void);
  21. NSPR_END_EXTERN_C
  22. #endif