#include <stdint.h>
#include <sys/kassert.h>
#include <sys/sga.h>
Go to the source code of this file.
◆ SGArray_Append()
Definition at line 18 of file sga.c.
19{
21
25
27}
#define SGARRAY_MAX_ENTRIES
SGEntry entries[SGARRAY_MAX_ENTRIES]
◆ SGArray_Dump()
Definition at line 30 of file sga.c.
31{
32 int i;
33
34 kprintf(
"--- SGArray Begin ---\n");
35 for (i = 0; i < sga->
len; i++)
36 {
39 }
40 kprintf(
"--- SGArray End ---\n");
41}
int kprintf(const char *fmt,...)
◆ SGArray_Init()
Definition at line 12 of file sga.c.