27 lines
903 B
C
27 lines
903 B
C
/**
|
|
* privileged_keywords.h
|
|
*
|
|
* Post Scarcity Soctware Environment
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#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"
|
|
|
|
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;
|
|
|
|
struct pso_pointer initialise_privileged_keywords( struct pso_pointer env);
|
|
#endif /* SRC_C_ENVIRONMENT_PRIVILEGED_KEYWORDS_H_ */
|