/* tnhelp.c */ /* Copyright 1997 by Eberhard Mattes Donated to the public domain. No warranty. 1997-01-04 Initial version 1997-04-05 Reorganize library 1997-07-19 Limit width, in case vsnprintf() is not available */ #include #include "firewall.h" #include "libemfw.h" #include "libemtn.h" void tn_help (tnconn *t, const Cmd *c) { while (c->cnam != NULL) { if (c->help != NULL) tn_printf (t, "%.79s\r\n", c->help); ++c; } }