Skip to content

Instantly share code, notes, and snippets.

@fabsor
Created April 13, 2010 06:56
Show Gist options
  • Save fabsor/364377 to your computer and use it in GitHub Desktop.
Save fabsor/364377 to your computer and use it in GitHub Desktop.
/**
* @file
* Description of the file here.
*/
#ifndef _NETEMU_SOCKET_H
#define _NETEMU_SOCKET_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* This a description of the example struct.
*/
struct example_struct {
int example_int; /**< variable description (if required) */
char example_chr; /**< variable description (if required) */
};
/**
* This is a description of example_function.
* @param example an example parameter
* @return an example return value.
*/
int example_function(int example)
#ifdef __cplusplus
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment