Tomato 1.28
[tomato.git] / release / src / router / httpd / version.c
blobbdd1a5d268fcad1d791f49f4a703f52fbb886248
1 /*
3 Tomato Firmware
4 Copyright (C) 2006-2009 Jonathan Zarate
6 */
8 #include "tomato.h"
10 void asp_build_time(int argc, char **argv)
12 web_puts(tomato_buildtime);
15 void asp_version(int argc, char **argv)
17 if (argc != 0) {
18 web_puts(tomato_version);
20 else {
21 web_write(tomato_version, strrchr(tomato_version, '.') - tomato_version);