diff options
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/html.c b/html.c index 5b07aa0..8f6e4f6 100644 --- a/html.c +++ b/html.c | |||
@@ -215,6 +215,14 @@ void html_option(const char *value, const char *text, const char *selected_value | |||
215 | html("</option>\n"); | 215 | html("</option>\n"); |
216 | } | 216 | } |
217 | 217 | ||
218 | void html_intoption(int value, const char *text, int selected_value) | ||
219 | { | ||
220 | htmlf("<option value='%d'%s>", value, | ||
221 | value == selected_value ? " selected='selected'" : ""); | ||
222 | html_txt(text); | ||
223 | html("</option>"); | ||
224 | } | ||
225 | |||
218 | void html_link_open(const char *url, const char *title, const char *class) | 226 | void html_link_open(const char *url, const char *title, const char *class) |
219 | { | 227 | { |
220 | html("<a href='"); | 228 | html("<a href='"); |