C/C++
cprog.asc
Associated article: C Programming
Tags: Web Development C/C++ Design
_C PROGRAMMING COLUMN_
by Al Stevens
Listing One
// ------ dfwrap.h
#ifndef DFWRAP_H
#define DFWRAP_H
typedef int bool;
const int true = 1;
const int false = 0;
#include <assert.h>
extern "C" {
#include "dflat.h"
}
#...


