You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

/*******************************************************************************//**
*
* @file hello.c
*
* <Description>
*
***********************************************************************************/
#include <stdio.h>
/***********************************************************************************
* HelloWorld
*******************************************************************************//**
*
* <Description>
*
* @param pString TODO
*
**********************************************************************************/
void HelloWorld(char* pString)
{
printf("%s\n", pString);
} /* HelloWorld */
/***********************************************************************************
* main
*******************************************************************************//**
*
* <Description>
*
* @return TODO
*
**********************************************************************************/
int main()
{
HelloWorld("Hello world");
return 0;
} /* main */
/**
* CVS History:
* $Log $
*
*/