C/C++
tooke.asc
Associated article: Object-Oriented Debugging
Tags: C/C++ Tools
_OBJECT-ORIENTED DEBUGGING_
by Simon Tooke
[LISTING ONE]
#ifndef STRING_H
#define STRING_H
#include <string.h>
#include <memory.h>
#include <malloc.h>
#ifdef NULL
# undef NULL
#endif
#define NULL 0
typedef enum { False, True } Boolean;
// ...


