C/C++
cprog.asc
Associated article: C Programming
Tags: Web Development C/C++ Design
_C PROGRAMMING COLUMN_
by Al Stevens
Listing One
// ------ serial.h
#ifndef SERIAL_H
#define SERIAL_H
#include <dos.h>
#undef disable
typedef int bool;
const int true = 1;
const int false = 0;
const int systimer = 8;
class Timer {
int timer;
...


