
#ifndef __MAIN_H__
#define __MAIN_H__

#include <string.h>
#include <stdio.h>
#include "plugin.h"
#include "cbmachine.h"

/* macros */
#define MTOI( mot )			 ((mot)>>1)
#define MTOP( mot )		     ((mot)>>1)
#define ITOM( mot )			 ((mot)<<1)
#define PTOM( mot )			 (((mot)<<1)+1)

#endif

