Rizin
unix-like reverse engineering framework and cli tools
rz_name.h
Go to the documentation of this file.
1 #ifndef RZ_NAME_H
2 #define RZ_NAME_H
3 
4 #include <rz_types.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 RZ_API bool rz_name_check(const char *name, bool strict);
11 RZ_API bool rz_name_filter(char *name, int len, bool strict);
12 RZ_API char *rz_name_filter2(const char *name, bool strict);
13 RZ_API bool rz_name_validate_char(const char ch, bool strict);
14 
15 #ifdef __cplusplus
16 }
17 #endif
18 
19 #endif // RZ_NAME_H
size_t len
Definition: 6502dis.c:15
#define RZ_API
RZ_API bool rz_name_validate_char(const char ch, bool strict)
Definition: name.c:6
RZ_API bool rz_name_filter(char *name, int len, bool strict)
Definition: name.c:43
RZ_API char * rz_name_filter2(const char *name, bool strict)
Definition: name.c:92
RZ_API bool rz_name_check(const char *name, bool strict)
Definition: name.c:24
Definition: z80asm.h:102