vault backup: 2025-01-07 18:14:44

This commit is contained in:
arc
2025-01-07 18:14:44 -07:00
parent 544cfb24fc
commit c99ca523f4
21 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,21 @@
Yes they are, different structs can have the same field names.
> 2
```c
struct c1 C1 { 0.0, 1.0};
struct c1 C2 { 1.0, 1.0};
```
> 8a
```c
const struct color MAGENTA { 255, 0, 255};
```
>11
20 bytes
UNCOMPLETED