Tools
debug.txt
Associated article: A Debug/Trace Tool
Tags: Tools
Published source code accompanying the article by Rainer Storn in which he presents a tool that is both useful when you don't have a powerful debugger at hand, and when you need to build trace functionality into your code for error-spotting support at the client's site. Also see DEBUG.ZIP
A Debug/Trace Tool by Rainer Storn Listing One #include <stdio.h> #include <stdlib.h> #include <stdarg.h> #define INF 1000 /*Infinity must be higher than the largest path value */ #define N 10 /*Maximum number of ...


