by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"

Dependencies:   mbed

header.h

Committer:
robt
Date:
2012-10-15
Revision:
0:16b94e5005da

File content as of revision 0:16b94e5005da:

/* Program Example 6.4: Template for .h header file
                                                              */

#ifndef VARIABLE_H    // if VARIABLE_H has not previously been defined
#define VARIABLE_H    // define it now

// header declarations here…

#endif               // end of the if directive