source: git/templates/templateForC.h @ 34942f

spielwiese
Last change on this file since 34942f was 34942f, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
Minor Fixes.
  • Property mode set to 100644
File size: 898 bytes
Line 
1/*****************************************************************************\
2 * Computer Algebra System SINGULAR   
3\*****************************************************************************/
4/** @file templateForC.h
5 *
6 * This is our template for C headers.
7 *
8 * ABSTRACT: Some more description here.
9 *
10 * @author Oleksandr Motsak
11 *
12 * @internal @version \$Id$
13 *
14 **/
15/*****************************************************************************/
16
17#ifndef TEMPLATEFORC_H
18#define TEMPLATEFORC_H
19
20/** New type name for int. */
21typedef int name;
22
23/** My enum. Or yours, if you want! */
24enum myEnum
25  {
26    int EVal1, /**< Enum value 1 */
27    int EVal2  /**< Enum value 2 */
28  };
29
30/** F1.
31 *
32 * This is function 1.
33 *
34 * The end!
35 */
36void F1(
37        int a1,  /**< [in] some int.
38                  * aasas.
39                  * bbbb.
40                  */
41        int & r1 /**< [out] integer result */
42       );
43
44#endif
45/* TEMPLATEFORC_H */
Note: See TracBrowser for help on using the repository browser.