19 lines
465 B
C
19 lines
465 B
C
/**
|
|
* payloads/symbol.h
|
|
*
|
|
* A symbol cell.
|
|
*
|
|
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
|
* Licensed under GPL version 2.0, or, at your option, any later version.
|
|
*/
|
|
|
|
#ifndef __psse_payloads_symbol_h
|
|
#define __psse_payloads_symbol_h
|
|
|
|
#include "memory/pointer.h"
|
|
|
|
/* TODO: for now, Symbol shares a payload with String, but this may change.
|
|
* Strings are of indefinite length, but symbols are really not, and might
|
|
* fit into any size class. */
|
|
|
|
#endif
|