* Create help for explaining how encrypted password file support
[alpine.git] / pith / list.h
blobabe32811d41dc543f233c9ab9726fbe5e140749c
1 /*
2 * $Id: list.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006 University of Washington
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * ========================================================================
16 #ifndef PITH_LIST_INCLUDED
17 #define PITH_LIST_INCLUDED
20 #define PL_NONE 0x00 /* flags modifying parse_list */
21 #define PL_REMSURRQUOT 0x01 /* rm surrounding quotes */
22 #define PL_COMMAQUOTE 0x02 /* backslash quotes comma */
25 /* exported protoypes */
26 char **parse_list(char *, int, int, char **);
27 char **copy_list_array(char **);
28 void free_list_array(char ***);
29 int equal_list_arrays(char **, char **);
32 #endif /* PITH_LIST_INCLUDED */