File: disasm.h

package info (click to toggle)
ceccomp 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,648 kB
  • sloc: ansic: 6,531; python: 1,078; makefile: 248; sh: 145
file content (18 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DISASM_H
#define DISASM_H

#include "main.h"
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>

extern void print_prog (uint32_t scmp_arch, fprog *prog, FILE *output_fp, bool trustful);

extern void disasm (FILE *fp, uint32_t scmp_arch);

extern filter *g_filters;

// return true if success or initialized
extern bool init_global_filters(void);

#endif