Add file, structure, global, and function documentation across all libakgl-owned headers and sources, including parameter contracts and likely AKERR/AKGL_ERR exceptions. Add a strict Doxyfile and build the generated API documentation in Gitea CI with warnings treated as failures. Co-authored-by: Codex (GPT-5) <noreply@openai.com>
15 lines
212 B
C
15 lines
212 B
C
/**
|
|
* @file types.h
|
|
* @brief Declares the public types API.
|
|
*/
|
|
|
|
#ifndef _AKGL_TYPES_H_
|
|
#define _AKGL_TYPES_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef float float32_t;
|
|
typedef double float64_t;
|
|
|
|
#endif // _AKGL_TYPES_H_
|