mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-16 09:47:00 +00:00
9442317413
- Remove plugin prefixes - It was unnecessary complicated - Remove unused code - Some RAPIfication - Rename _set( methods into _use( - Simplify some string processing - r_parse is working again - Sync all those api changes in r_core - External static plugin lists moved to .c - Fix some cast-related segfaults in core * Review the r_search API - RAPIfication - Allow to pass NULL as binmask - Added TODO with some more ideas
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/* radare - LGPL - Copyright 2009 nibble<.ds@gmail.com> */
|
|
|
|
#ifndef _INCLUDE_R_PARSE_H_
|
|
#define _INCLUDE_R_PARSE_H_
|
|
|
|
#include <r_types.h>
|
|
#include <list.h>
|
|
|
|
// XXX : remove this define???
|
|
#define R_PARSE_STRLEN 256
|
|
|
|
struct r_parse_t {
|
|
void *user;
|
|
struct r_parse_handle_t *cur;
|
|
struct list_head parsers;
|
|
};
|
|
|
|
struct r_parse_handle_t {
|
|
char *name;
|
|
char *desc;
|
|
int (*init)(void *user);
|
|
int (*fini)(void *user);
|
|
int (*parse)(struct r_parse_t *p, void *data, char *str);
|
|
int (*assemble)(struct r_parse_t *p, char *data, char *str);
|
|
struct list_head list;
|
|
};
|
|
|
|
/* parse.c */
|
|
R_API struct r_parse_t *r_parse_new();
|
|
R_API void r_parse_free(struct r_parse_t *p);
|
|
R_API struct r_parse_t *r_parse_init(struct r_parse_t *p);
|
|
R_API void r_parse_set_user_ptr(struct r_parse_t *p, void *user);
|
|
R_API int r_parse_add(struct r_parse_t *p, struct r_parse_handle_t *foo);
|
|
R_API int r_parse_list(struct r_parse_t *p);
|
|
R_API int r_parse_use(struct r_parse_t *p, const char *name);
|
|
R_API int r_parse_parse(struct r_parse_t *p, void *data, char *str);
|
|
R_API int r_parse_assemble(struct r_parse_t *p, char *data, char *str);
|
|
|
|
#endif
|