Files
Compound/String/include/char.h
William 5f7a6c6f93 (SOC) Storage Only Commit
(ADD) Name, NameScope, Catlog, Object, String, Attribute, Char, Registry, Utils, Type, <Platform Support>, <Global Constants>, README

(MOD) Array, Var, Status, MemMan, <Common>
2024-05-16 00:04:42 +08:00

10 lines
144 B
C

#ifndef COMPOUND_CHAR_H
# define COMPOUND_CHAR_H
typedef struct {
int value;
int width;
} Char; // 8 Bytes
#endif /* COMPOUND_CHAR_H */