/** * @file websh.c * @author Tobias Eidelpes * @date 2018-04-16 * * @brief Formats program output for the web. */ #include #include #include #include static const char *pname; int main(int argc, char *argv[]) { pname = argv[0]; printf("[%s]\n", pname); return 0; }