1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Add str_list_check[_ci] to s3's proto.h

Jelmer, when I include lib/util/util.h into some s3 file I get errors, this is
why I put those prototypes here as a workaround. Might be fixed differently
later.
This commit is contained in:
Volker Lendecke 2008-10-25 13:50:25 +02:00
parent 5616480514
commit 1ad54998a9

View File

@ -1663,6 +1663,9 @@ size_t str_list_length( const char * const*list );
bool str_list_sub_basic( char **list, const char *smb_name,
const char *domain_name );
bool str_list_substitute(char **list, const char *pattern, const char *insert);
bool str_list_check(const char **list, const char *s);
bool str_list_check_ci(const char **list, const char *s);
char *ipstr_list_make(char **ipstr_list,
const struct ip_service *ip_list,
int ip_count);