split 0.1.0

Resource Split for BIN/IVF/WEBM/PSNR/YUV/...
Documentation
#ifndef _LIBP_ALIGN_H_
#define _LIBP_ALIGN_H_


/*
 *	a type with the most strict alignment requirements
 */
typedef union libp_align
{
	char   c;
	short  s;
	long   l;
	int    i;
	float  f;
	double d;
	void * v;
	void (*q)(void);
}libp_align_t;

#endif