AdaptiveOpticsControl
00CORE.h
Go to the documentation of this file.
1 #ifndef _00CORE_H
2 #define _00CORE_H
3 
4 int init_00CORE();
5 
6 
7 int printRED(char *string);
8 
9 int printWARNING(const char *file, const char *func, int line, char *warnmessage);
10 
11 int printERROR(const char *file, const char *func, int line, char *errmessage);
12 
13 int set_precision(int vp);
14 
15 int CLIWritePid();
16 
17 struct timespec timespec_diff(struct timespec start, struct timespec end);
18 
19 double timespec_diff_double(struct timespec start, struct timespec end);
20 
21 #endif
int CLIWritePid()
Definition: 00CORE.c:137
double timespec_diff_double(struct timespec start, struct timespec end)
Definition: 00CORE.c:170
int init_00CORE()
Definition: 00CORE.c:34
int printRED(char *string)
Definition: 00CORE.c:41
int printWARNING(const char *file, const char *func, int line, char *warnmessage)
Definition: 00CORE.c:52
int set_precision(int vp)
Definition: 00CORE.c:105
int printERROR(const char *file, const char *func, int line, char *errmessage)
Definition: 00CORE.c:79
char * line
Definition: CLIcore.c:121
struct timespec timespec_diff(struct timespec start, struct timespec end)
Definition: 00CORE.c:156