]> saetta.ns0.it Git - libzakcgi/commitdiff
Added ZakCgiTag::img (refs #945).
authorAndrea Zagli <azagli@libero.it>
Mon, 27 Jul 2015 16:08:44 +0000 (18:08 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 27 Jul 2015 16:08:44 +0000 (18:08 +0200)
src/tag.c
src/tag.h
tests/tag.c

index b8f14a98423da22a2fdaf139a12ea30756519680..65116583cc9ec4208c7b85d9fcf7da1ee90abd1c 100644 (file)
--- a/src/tag.c
+++ b/src/tag.c
@@ -136,3 +136,21 @@ gchar
 
        return zak_cgi_tag_tag_valist (name, id, ap);
 }
+
+/**
+ * zak_cgi_tag_img:
+ * @name:
+ * @id:
+ *
+ * Returns:
+ */
+gchar
+*zak_cgi_tag_img (const gchar *id,
+                                 ...)
+{
+       va_list ap;
+
+       va_start (ap, id);
+
+       return zak_cgi_tag_tag_valist ("img", id, ap);
+}
index 1d3ba7eab77c92a98a7783ba7db2ac1ac3865369..5e29a3f9a03c1069bf682b310595974423f2bc2b 100644 (file)
--- a/src/tag.h
+++ b/src/tag.h
@@ -29,5 +29,8 @@ gchar *zak_cgi_tag_tag (const gchar *name,
                                                const gchar *id,
                                                ...);
 
+gchar *zak_cgi_tag_img (const gchar *id,
+                                               ...);
+
 
 #endif /* __ZAK_CGI_TAG_H__ */
index cfaf81a6b16b8933bb39641ff0b0f024f5b10553..5999391d539c18e7ea97a4b51b20a2462006450b 100644 (file)
@@ -27,5 +27,7 @@ main (int argc, char *argv[])
                                                                          "content", "the content of the text area",
                                                                          NULL));
 
+       g_message ("%s", zak_cgi_tag_img ("theimage", "src", "pippo.png", NULL));
+
        return 0;
 }