16 lines
292 B
C
16 lines
292 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
/**** common.h
|
|
Contains common variables, such as return codes.
|
|
****/
|
|
#define LOGO_STRING_A " Welcome "
|
|
#define LOGO_STRING_B " to "
|
|
#define LOGO_STRING_C " timesynk"
|
|
#define NAME "timesynk"
|
|
#define ERROR 1
|
|
#define SUCCESS 0
|
|
|
|
int is_networking;
|
|
|
|
#endif
|