14 lines
295 B
C
14 lines
295 B
C
#ifndef _UTILS_H
|
|
#define _UTILS_H
|
|
|
|
|
|
#define MAX_LINE 1024
|
|
#define MAX_ARGS 16
|
|
#define PROBES_MAX_NUM 16
|
|
#define PROBE_NAME_SIZE 64
|
|
#define DEVICES_SCAN_MAX 32
|
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
|
|
|
#endif |