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);
+}
const gchar *id,
...);
+gchar *zak_cgi_tag_img (const gchar *id,
+ ...);
+
#endif /* __ZAK_CGI_TAG_H__ */
"content", "the content of the text area",
NULL));
+ g_message ("%s", zak_cgi_tag_img ("theimage", "src", "pippo.png", NULL));
+
return 0;
}