diff options
| author | Tyge Løvset <[email protected]> | 2022-08-07 08:03:46 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-08-07 08:20:34 +0200 |
| commit | c87898773d1af364a9847610401a9959f6019fe7 (patch) | |
| tree | 5e64c9d96fb9e12192ce298f1d2909d43b72571a /README.md | |
| parent | 618b5704e6f85cfe1b6e5c9c9373abe76a8bb628 (diff) | |
| download | STC-modified-c87898773d1af364a9847610401a9959f6019fe7.tar.gz STC-modified-c87898773d1af364a9847610401a9959f6019fe7.zip | |
Internal: moved some functions in csview/cstr to implementation sections.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -204,8 +204,8 @@ int main(void) { c_auto (csmap_int, map) { int nums[4] = {10, 20, 30, 40}; - struct Point pts[4] = { {10, 1}, {20, 2}, {30, 3}, {40, 4} }; - int pairs[4][2] = { {20, 2}, {10, 1}, {30, 3}, {40, 4} }; + struct Point pts[4] = {{10, 1}, {20, 2}, {30, 3}, {40, 4}}; + int pairs[4][2] = {{20, 2}, {10, 1}, {30, 3}, {40, 4}}; /* add some elements to each container */ for (int i = 0; i < 4; ++i) { |
