Started work on binding functions. Not yet complete.

This commit is contained in:
Simon Brooke 2026-05-04 16:15:57 +01:00
parent f4303247b9
commit efa6a3246d
17 changed files with 321 additions and 41 deletions

View file

@ -3,7 +3,7 @@
*
* Post Scarcity Soctware Environment
*
* TODO: Edit purpose.
* Keywords guaranteed to be present in the environment on each node.
*
* Copyright (c): 27 Apr 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
@ -11,11 +11,15 @@
#ifndef SRC_C_ENVIRONMENT_PRIVILEGED_KEYWORDS_H_
#define SRC_C_ENVIRONMENT_PRIVILEGED_KEYWORDS_H_
#include "memory/pointer.h"
#define PK_BOOTSTRAP U"bootstrap"
#define PK_DOCUMENTATION U"documentation"
#define PK_LOCATION U"location"
#define PK_NAME U"name"
#include "memory/pointer.h"
extern struct pso_pointer privileged_keyword_bootstrap;
extern struct pso_pointer privileged_keyword_documentation;
extern struct pso_pointer privileged_keyword_location;
extern struct pso_pointer privileged_keyword_name;