File: decode.h

package info (click to toggle)
dgen 1.23-7
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 2,168 kB
  • ctags: 3,086
  • sloc: ansic: 45,404; cpp: 4,405; sh: 1,960; makefile: 116
file content (17 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Header file for decode functions */
#ifndef __GENIE_DECODE_H__
#define __GENIE_DECODE_H__

struct patch { unsigned int addr, data; };

#ifdef __cplusplus
extern "C" {
#endif

void decode(const char* code, struct patch *result);

#ifdef __cplusplus
} // extern "C"
#endif

#endif // __GENIE_DECODE_H__