File: c_maths.h

package info (click to toggle)
exhale 0.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,616 kB
  • sloc: python: 9,057; cpp: 1,260; javascript: 915; f90: 29; ansic: 18; makefile: 16
file content (39 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/***************************************************************************************
 * This file is dedicated to the public domain.  If your jurisdiction requires a       *
 * specific license:                                                                   *
 *                                                                                     *
 * Copyright (c) Stephen McDowell, 2017-2024                                           *
 * License:      CC0 1.0 Universal                                                     *
 * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode           *
 **************************************************************************************/
/*!
 * @file
 * Math functions declarations
 */

#ifndef C_MATHS_H
#define C_MATHS_H

#if defined(__cplusplus)
    extern "C" {
#endif

/*!
 * @brief Add two integers
 * @param a An integer
 * @param b Another integer
 */
int cm_add(int a, int b);

/*!
 * @brief Subtract one integer from another
 * @param a An integer
 * @param b An integer to subtract from \p a
 */
int cm_sub(int a, int b);

#if defined(__cplusplus)
    } // extern "C"
#endif

#endif // C_MATHS_H