1.0     Ok, I've decided to give the thing the great 1.0 award. I have
	fixed several things. There was a problem with the program when
	it would get to the point where it would ask to proceed with the
	current user profile. If you were to give your own value for the
	user's GID, then the character array "num" would not be null. So, 
	therefore when you have:

		while(!strcmp(num,"")) {

		  fprintf(stdout,"\nProceed with current profile...?:");
			gets(num);

	num would be equal to whatever you chose for the GID. I fixed this 
	by adding a new character array called "yesno". I think this also
	makes things a little clearer. As For new additions to newuser, it 
	checks for illeagal characters in a username entered (i.e. you can't 
	have things like "ctrl-x" in the username.

0.02	Sven Riedel Added NIS support (i.e. No shadow passwords since NIS 
	and shadow passwording is a pain)
	Fixes by Allen: Fixed strcnv() was returning the wrong value for
	any string over 3 characters.
	Sven had added an if(strlen(pass1)<5)) but it got broken because
	of strcnv(). Anyhow that's fixed and I cleaned up a little of the
	code while I was at it. I also decided to include both binaries
	this time. Not all people have a working C compiler handy.  

