diff options
Diffstat (limited to 'zola/content/articles')
-rw-r--r-- | zola/content/articles/typedef-or-not.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zola/content/articles/typedef-or-not.md b/zola/content/articles/typedef-or-not.md index 8a70f77..7188263 100644 --- a/zola/content/articles/typedef-or-not.md +++ b/zola/content/articles/typedef-or-not.md @@ -20,6 +20,7 @@ Using *typedef* allows us to rename a data type, and I follow these ideas: ```C /* The .h file */ + struct position { int x; int y; |