From b6075dd5e7632398a37456ef2670c075f152635f Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 8 Jan 2023 19:30:10 +0100 Subject: Adapt comment indent to Linux kernel code --- gui.c | 24 ++++++++++++------------ gui.h | 24 ++++++++++++------------ main.c | 32 ++++++++++++++++---------------- tests/get_domainpart.c | 24 ++++++++++++------------ xmpp.c | 24 ++++++++++++------------ xmpp.h | 24 ++++++++++++------------ 6 files changed, 76 insertions(+), 76 deletions(-) diff --git a/gui.c b/gui.c index 2b4a2a2..66ce806 100644 --- a/gui.c +++ b/gui.c @@ -1,19 +1,19 @@ /* - * LimoX - The Linux on mobile XMPP chat client - * Copyright (C) 2022 xengineering + * LimoX - The Linux on mobile XMPP chat client + * Copyright (C) 2022 xengineering * - * 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, either version 3 of the License, or - * (at your option) any later version. + * 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, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ diff --git a/gui.h b/gui.h index 4ef3247..331ad2c 100644 --- a/gui.h +++ b/gui.h @@ -1,19 +1,19 @@ /* - * LimoX - The Linux on mobile XMPP chat client - * Copyright (C) 2022 xengineering + * LimoX - The Linux on mobile XMPP chat client + * Copyright (C) 2022 xengineering * - * 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, either version 3 of the License, or - * (at your option) any later version. + * 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, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ diff --git a/main.c b/main.c index 88cfec1..de8e761 100644 --- a/main.c +++ b/main.c @@ -1,19 +1,19 @@ /* - * LimoX - The Linux on mobile XMPP chat client - * Copyright (C) 2022 xengineering + * LimoX - The Linux on mobile XMPP chat client + * Copyright (C) 2022 xengineering * - * 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, either version 3 of the License, or - * (at your option) any later version. + * 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, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ @@ -25,7 +25,7 @@ /* - * Configuration struct for all options + * Configuration struct for all options */ typedef struct options { bool unknown; @@ -34,7 +34,7 @@ typedef struct options { /* - * Parse command line arguments + * Parse command line arguments */ static void get_opts(Options* opts, int argc, char* argv[]) { @@ -55,7 +55,7 @@ static void get_opts(Options* opts, int argc, char* argv[]) } /* - * Print help page to command line + * Print help page to command line */ static void print_help(void) { @@ -70,7 +70,7 @@ static void print_help(void) } /* - * Run control flow of the application + * Run control flow of the application */ int main(int argc, char* argv[]) { diff --git a/tests/get_domainpart.c b/tests/get_domainpart.c index dc2f769..6601330 100644 --- a/tests/get_domainpart.c +++ b/tests/get_domainpart.c @@ -1,19 +1,19 @@ /* - * LimoX - The Linux on mobile XMPP chat client - * Copyright (C) 2022 xengineering + * LimoX - The Linux on mobile XMPP chat client + * Copyright (C) 2022 xengineering * - * 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, either version 3 of the License, or - * (at your option) any later version. + * 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, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ diff --git a/xmpp.c b/xmpp.c index fb9fc68..f6bfc96 100644 --- a/xmpp.c +++ b/xmpp.c @@ -1,19 +1,19 @@ /* - * LimoX - The Linux on mobile XMPP chat client - * Copyright (C) 2022 xengineering + * LimoX - The Linux on mobile XMPP chat client + * Copyright (C) 2022 xengineering * - * 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, either version 3 of the License, or - * (at your option) any later version. + * 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, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ diff --git a/xmpp.h b/xmpp.h index f6b9071..622881c 100644 --- a/xmpp.h +++ b/xmpp.h @@ -1,19 +1,19 @@ /* - * LimoX - The Linux on mobile XMPP chat client - * Copyright (C) 2022 xengineering + * LimoX - The Linux on mobile XMPP chat client + * Copyright (C) 2022 xengineering * - * 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, either version 3 of the License, or - * (at your option) any later version. + * 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, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ -- cgit v1.2.3-70-g09d2