Go to the documentation of this file.
16#ifndef RC_USEFUL_INCLUDES
17#define RC_USEFUL_INCLUDES
38#include <linux/input.h>
41#include <sys/socket.h>
42#include <netinet/in.h>
46#include <sys/select.h>
51#define DEG_TO_RAD 0.0174532925199
55#define RAD_TO_DEG 57.295779513
63#define TWO_PI (2.0 * M_PI)
69#define ARRAY_SIZE(array) sizeof(array)/sizeof(array[0])
73#define min(a, b) ((a < b) ? a : b)