Skip to content

Instantly share code, notes, and snippets.

@koturn
Created December 5, 2015 23:07
Show Gist options
  • Save koturn/4b0ed181670805357032 to your computer and use it in GitHub Desktop.
Save koturn/4b0ed181670805357032 to your computer and use it in GitHub Desktop.
/*!
* @brief Template C-source file
*
* This is a template C-source file
* @author koturn
* @date 2015 12/06
* @file a.c
* @version 0.1
*/
#include <stdio.h>
#include <stdlib.h>
/*!
* @brief Entry point of the program
* @param [in] argc A number of command-line arguments
* @param [in] argv Command line arguments
* @return Exit-status
*/
int
main(int argc, char *argv[])
{
printf("Hello World!\n");
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment