simh-testsetgenerator/Ibm1130/ibm1130_fmt.h
Mark Pizzolato 5531ccb175 ALL: Massive 'const' cleanup
These changes facilitate more robust parameter type checking and helps
to identify unexpected coding errors.

Most simulators can now also be compiled with a C++ compiler without
warnings.

Additionally, these changes have also been configured to facilitate easier
backporting of simulator and device simulation modules to run under the
simh v3.9+ SCP framework.
2016-05-15 15:25:33 -07:00

17 lines
798 B
C

/*
* (C) Copyright 2003, Bob Flander.
* You may freely use this program, but: it offered strictly on an AS-IS, AT YOUR OWN
* RISK basis, there is no warranty of fitness for any purpose, and the rest of the
* usual yada-yada. Please keep this notice and the copyright in any distributions
* or modifications.
*
* This is not a supported product, but I welcome bug reports and fixes.
* Mail to bob@jftr.com
*/
/* ibm1130_asm.h: definition of routines in ibm1130_asm.c
*/
const char* EditToAsm(char* str, int width); /* convert edit format to 1130 assembler format */
const char* EditToFortran(char* str, int width); /* convert edit format to Fortran format */
const char* EditToWhitespace(char* str, int width); /* clean white space, tabstops every 8 positions */