summaryrefslogtreecommitdiff
path: root/gemfeed/2016-11-20-methods-in-c.html
diff options
context:
space:
mode:
Diffstat (limited to 'gemfeed/2016-11-20-methods-in-c.html')
-rw-r--r--gemfeed/2016-11-20-methods-in-c.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/gemfeed/2016-11-20-methods-in-c.html b/gemfeed/2016-11-20-methods-in-c.html
index c871c31c..48dd5bcf 100644
--- a/gemfeed/2016-11-20-methods-in-c.html
+++ b/gemfeed/2016-11-20-methods-in-c.html
@@ -71,7 +71,7 @@ p.quote:after {
</head>
<body>
<h1>Methods in C</h1>
-<p class="quote"><i>Written by Paul Buetow 2016-11-20</i></p>
+<p class="quote"><i>Published by Paul Buetow 2016-11-20</i></p>
<p>You can do some sort of object-oriented programming in the C Programming Language. However, that is very limited. But also very easy and straightforward to use.</p>
<h2>Example</h2>
<p>Let's have a look at the following sample program. All you have to do is to add a function pointer such as "calculate" to the definition of struct "something_s". Later, during the struct initialization, assign a function address to that function pointer:</p>