blob: fd7bd2b947c2a891c08755fb47f3d9bc6fae3efa (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __USCRIPT_US_DEBUG_H__
#define __USCRIPT_US_DEBUG_H__
#include "common.h"
#include "val.h"
int print_instruction(struct us_proto *func, int idx);
void print_func(struct us_proto *func);
#endif // __USCRIPT_US_DEBUG_H__
|