ocarina/include/core/version.h
Anna Schumaker 0a9c6d296b Add doxygen documentation for audio.h, core.h, and version.h
I want to have all of Ocarina documented in the code, rather than in a
difficult-to-maintain DESIGN file.  Let's get going on that!

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-09-12 16:36:46 -04:00

19 lines
314 B
C

/**
* @file
* Copyright 2013 (c) Anna Schumaker.
*/
#ifndef OCARINA_CORE_VERSION_H
#define OCARINA_CORE_VERSION_H
/**
* Find the current version of Ocarina.
*
* @return The current Ocarina version.
*/
static inline const char *get_version()
{
return CONFIG_VERSION;
}
#endif /* OCARINA_CORE_VERSION_H */