// -*- c++ -*-
//
// breakcode.h:
//
#ifndef BREAKCODE_H
#define BREAKCODE_H

// program termination
#define BREAK_PROGRAM_EXIT      0x1

// read data
#define BREAK_READ_INT          0x11
#define BREAK_READ_CHAR         0x12
#define BREAK_READ_STRING       0x13

// print data
#define BREAK_PRINT_INT         0x21
#define BREAK_PRINT_CHAR        0x22
#define BREAK_PRINT_STRING      0x23

#endif
// end of breakcode.h