added basic boilerplate for pages and filled out vector documentation

This commit is contained in:
herbglitch 2024-12-31 00:58:45 -07:00
parent 7b5194dc05
commit c4e6b525e2
9 changed files with 205 additions and 10 deletions

View file

@ -1,8 +1,13 @@
\page standard-bool ARC_Bool
# Basic Overview
The ::ARC_Bool type simple sets ::ARC_Bool to the `stdbool.h` `bool` type, ::ARC_True to true, and ::ARC_False to false. This type exists so that it can be overriden if a different boolean type should be used (like with opengl)
Basic Example:
The API Reference for ::ARC_Bool can be found here: arc/std/bool.h
# Basic Example
```c
#include <arc/std/bool.h>
@ -14,7 +19,8 @@ if(example == ARC_True){
}
```
Override Example:
# Override Example
```c
#include <stdint.h>