#include <stdio.h>
#include <stdlib.h>

int main( int argc, char* argv[] ) {

	/* Should be big enough. */
	char buffer[512];

	strcpy(buffer,argv[1]);

	return 0;

}
