34 lines
633 B
C
34 lines
633 B
C
#pragma once
|
|
|
|
/**
|
|
* Brief description of the function.
|
|
*
|
|
* Detailed description of the function. This part can be used to elaborate on the functionality, parameters, and return values.
|
|
*
|
|
* @param x The first parameter, representating an integer value.
|
|
* @param y The second parameter, representing an integer value.
|
|
* @return The sum of x and y.
|
|
*/
|
|
int add(int a, int b);
|
|
|
|
/**
|
|
* Get the version that was generated.
|
|
*/
|
|
const char* getVersion();
|
|
|
|
/**
|
|
* Get the git hash
|
|
*/
|
|
const char* getGitHash();
|
|
|
|
/**
|
|
* Get the git branch
|
|
*/
|
|
const char* getGitBranch();
|
|
|
|
/**
|
|
* Get the custom value
|
|
*/
|
|
const char* getCustomValue();
|
|
|