2008-03-21 20:41:30 +03:00
|
|
|
#include <fmt.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2010-05-22 06:52:47 +04:00
|
|
|
#include <stuff/x.h>
|
|
|
|
#include <stuff/util.h>
|
2008-03-21 20:41:30 +03:00
|
|
|
|
|
|
|
#ifndef EXTERN
|
|
|
|
# define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2010-05-24 23:17:09 +04:00
|
|
|
enum { DAuto, DHorizontal, DVertical };
|
2008-03-21 20:41:30 +03:00
|
|
|
|
2021-10-15 23:12:16 +03:00
|
|
|
extern Handlers handlers;
|
2010-05-24 23:17:09 +04:00
|
|
|
EXTERN int direction;
|
2008-03-21 20:41:30 +03:00
|
|
|
|