aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/html.c b/html.c
index c0b2ed4..3a5d28d 100644
--- a/html.c
+++ b/html.c
@@ -117,15 +117,6 @@ void html_attr(char *txt)
html(txt);
}
-void html_hidden(char *name, char *value)
-{
- html("<input type='hidden' name='");
- html_attr(name);
- html("' value='");
- html_attr(value);
- html("'/>");
-}
-
void html_link_open(char *url, char *title, char *class)
{
html("<a href='");
@@ -164,4 +155,3 @@ void html_filemode(unsigned short mode)
html_fileperm(mode >> 3);
html_fileperm(mode);
}
-