/* $Id: file-c,v 1.1.1.1 1999/01/30 06:09:06 andrewk Exp $
 ******************************************************************************
 * 
 * PIOCONS - PSX PIO CONSOLE UTILITY FOR LINUX
 * Copyright (C) 1997,1998 by "The PIOCONS Team" (see AUTHORS)
 * All Rights Reserved.
 * 
 ******************************************************************************
 */

#include "file.h"

void file_any_name (void)
{
	/*
	**	this is my common coding style.
	*/
	
	if (expression)
	{
		...
	}
	else
	{
		...
	}

	for (x=0;x<y;x++)
	{
		...
	}
	
	do {
		...
	} while (expression)

	while (expression)
	{
		...
	}

	switch (value)
	{
		case CONSTANT:
			break;
		
		case CONSTANT:
			break;

		case CONSTANT: {
			int local_variable;
		} break;

	}

	function();
	
	function (parameter);

	return value;
}
