doxygen-example  0.0.1
A silly C program to use for demonstrating doxygen
C:/Users/Toby/git/doxygen-example/display.h
Go to the documentation of this file.
1 
9 #ifndef DISPLAY_H_
10 #define DISPLAY_H_
11 
12 #include <stdlib.h>
13 
19 #ifdef __cplusplus
20  extern "C" {
21 #endif
22 
23 #define HELLO_WORLD "Hello world!"
24 #define GOODBYE_WORLD "Goodbye cruel world"
32 int displayMessage(char * message);
33 
34 #ifdef __cplusplus
35  }
36 #endif
37 
40 #endif