Still doesn't compile, but I think excellent progress.

This commit is contained in:
Simon Brooke 2026-04-28 11:54:15 +01:00
parent dbeb99759a
commit aac4669a3d
34 changed files with 1128 additions and 673 deletions

View file

@ -0,0 +1,23 @@
/**
* privileged_keywords.h
*
* Post Scarcity Soctware Environment
*
* TODO: Edit purpose.
*
* Copyright (c): 27 Apr 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef SRC_C_ENVIRONMENT_PRIVILEGED_KEYWORDS_H_
#define SRC_C_ENVIRONMENT_PRIVILEGED_KEYWORDS_H_
#define PK_LOCATION U"location"
#define PK_NAME = U"name"
#include "memory/pointer.h"
extern struct pso_pointer privileged_keyword_location;
extern struct pso_pointer privileged_keyword_name;
struct pso_pointer initialise_privileged_keywords( struct pso_pointer env);
#endif /* SRC_C_ENVIRONMENT_PRIVILEGED_KEYWORDS_H_ */