mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-10 07:21:55 +00:00
11 lines
257 B
C
11 lines
257 B
C
#ifndef FPO_H
|
|
#define FPO_H
|
|
|
|
void free_fpo_stream(void *stream);
|
|
void parse_fpo_stream(void *stream, R_STREAM_FILE *stream_file);
|
|
|
|
void free_fpo_new_stream(void *stream);
|
|
void parse_fpo_new_stream(void *stream, R_STREAM_FILE *stream_file);
|
|
|
|
#endif // FPO_H
|