/* vim: set foldmethod=marker: */ /* * index.c: Сайт поддежки канала #linux@RusNet IRC $Id: deadbeef $ + - +-- 2 lines: * (C) Copyright 2011-2023 * {{{1 (C) Copyright 2011-2023 | * Author: @komar <#linux@RusNet> + - +-- 5 lines: * This program is free software; you can redistribute it and/or * {{{1 This program is free software; you can redistribute it and/or | * modify it under the terms of the GNU General Public License | * as published by the Free Software Foundation; version 2 | * of the License. | * }}}1 */ #include <stdio.h> #include <err.h> #ifdef HAVE_WEB_MENU # include <intro.h> /* Введение для новичков */ # include <rules.h> /* Правила */ # include <faq.h> /* ЧаВо: часто задаваемые вопросы */ # include <bots.h> /* Описание ботов */ # include <troubleshooting.h> /* Coветы по решению проблем */ # include <quote.h> /* Цитатник */ # include <calc.h> /* Записки */ # include <gallery.h> /* Галлерея */ # include <shots.h> /* Screenshots */ # include <workplaces.h> /* Рабочие места */ # include <fun-and-profit.h> /* Развлекашки и полезняшки */ # include <stats.h> /* Статистика канала */ # include <logs.h> /* Логи канала */ # include <src.h> /* Исходный код сайта и бота */ #endif int main(int argc, char *argv[]) { + - +-- 5 lines: Проверка ника /* {{{1 Проверка ника */ | if (argc != 2) | errx(1, "Укажите ник"); | | /* }}}1 Приветствие */ printf("/msg %s Добро пожаловать на #linux :)\n", argv[1]); return 0; }