You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
312 B
15 lines
312 B
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#include "config.h"
|
|
#include "compat.h"
|
|
|
|
#define ARRAY_LEN(a) (sizeof(a) / sizeof(a[0]))
|
|
#define MIN(X,Y) (X) < (Y) ? (X) : (Y)
|
|
#define MAX(X,Y) (X) > (Y) ? (X) : (Y)
|
|
|
|
#define container_of(ptr, type, member) \
|
|
((type *) (((char *) (ptr)) - offsetof(type, member)))
|
|
|
|
#endif
|