summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2015-07-08 12:17:00 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2015-07-08 12:17:00 +0100
commit42156a7c34903beb40920368ae9027c3276a6a23 (patch)
tree179a16bf76488a010a8420a613a786a6b68bf1ce
parent825349c7b8a7edb54d24b74356ec597f27e5d18a (diff)
downloadefl-42156a7c34903beb40920368ae9027c3276a6a23.tar.gz
eolian/generator: static-ify some funcs
-rw-r--r--src/bin/eolian/docs_generator.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/eolian/docs_generator.c b/src/bin/eolian/docs_generator.c
index 908b08273b..9e4e66ec05 100644
--- a/src/bin/eolian/docs_generator.c
+++ b/src/bin/eolian/docs_generator.c
@@ -109,7 +109,7 @@ noref:
eina_strbuf_append(wbuf, refn);
}
-int
+static int
_append_section(const char *desc, int ind, int curl, Eina_Strbuf *buf,
Eina_Strbuf *wbuf, Eina_Bool use_legacy)
{
@@ -181,7 +181,7 @@ _append_section(const char *desc, int ind, int curl, Eina_Strbuf *buf,
return curl;
}
-int
+static int
_append_since(const char *since, int indent, int curl, Eina_Strbuf *buf)
{
if (since)
@@ -197,7 +197,7 @@ _append_since(const char *since, int indent, int curl, Eina_Strbuf *buf)
return curl;
}
-void
+static void
_gen_doc_brief(const char *summary, const char *since, int indent,
Eina_Strbuf *buf, Eina_Bool use_legacy)
{
@@ -217,7 +217,7 @@ _gen_doc_brief(const char *summary, const char *since, int indent,
eina_strbuf_append(buf, " */");
}
-void
+static void
_gen_doc_full(const char *summary, const char *description, const char *since,
int indent, Eina_Strbuf *buf, Eina_Bool use_legacy)
{