Embedded Systems
douglas.asc
Associated article: Error Message Management
Tags: Embedded Systems
_Error Message Management_ by Rohan T. Douglas [LISTING ONE] /* Include file for macros replacement of error function. */ #define error(m) _error(__FILE__, __LINE__) extern void _error(char *, int); [LISTING TWO] /* Definition of error function. */ #include <stdio.h> #include &...


