RIP BOOL. Convert BOOL -> bool. I found a few interesting
[jerry/samba.git] / source / include / mangle.h
index 382bf1c6305af64016f8324b83e0ce81b4c6e1cb..c07b852453eb90404209e61a15ee3706d7ceaef6 100644 (file)
@@ -6,17 +6,17 @@
 
 struct mangle_fns {
        void (*reset)(void);
-       BOOL (*is_mangled)(const char *s, const struct share_params *p);
-       BOOL (*must_mangle)(const char *s, const struct share_params *p);
-       BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards,
+       bool (*is_mangled)(const char *s, const struct share_params *p);
+       bool (*must_mangle)(const char *s, const struct share_params *p);
+       bool (*is_8_3)(const char *fname, bool check_case, bool allow_wildcards,
                       const struct share_params *p);
-       BOOL (*lookup_name_from_8_3)(TALLOC_CTX *ctx,
+       bool (*lookup_name_from_8_3)(TALLOC_CTX *ctx,
                                const char *in,
                                char **out, /* talloced on the given context. */
                                const struct share_params *p);
-       BOOL (*name_to_8_3)(const char *in,
+       bool (*name_to_8_3)(const char *in,
                        char out[13],
-                       BOOL cache83,
+                       bool cache83,
                        int default_case,
                        const struct share_params *p);
 };