From: Sergey Senozhatsky <sergey.senozhatsky at gmail.com>
To: powertop@lists.01.org
Subject: [Powertop] [PATCH] remove csstoh.c
Date: Fri, 01 Feb 2013 10:26:34 +0300 [thread overview]
Message-ID: <20130201072634.GA2587@swordfish> (raw)
[-- Attachment #1: Type: text/plain, Size: 2592 bytes --]
Remove csstoh.c since we use csstoh.sh.
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky(a)gmail.com>
---
.gitignore | 1 -
src/csstoh.c | 69 ------------------------------------------------------------
2 files changed, 70 deletions(-)
diff --git a/.gitignore b/.gitignore
index 96ffdba..35d41c2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,7 +39,6 @@ po/*.gmo
po/stamp-po
src/powertop
src/css.h
-src/csstoh
src/Makefile.in
src/.deps/
src/Makefile
diff --git a/src/csstoh.c b/src/csstoh.c
deleted file mode 100644
index 28858f5..0000000
--- a/src/csstoh.c
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright 2010, Intel Corporation
- *
- * This file is part of PowerTOP
- *
- * This program file 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.
- *
- * 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 in a file named COPYING; if not, write to the
- * Free Software Foundation, Inc,
- * 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301 USA
- * or just google for it.
- *
- * Authors:
- * Arjan van de Ven <arjan(a)linux.intel.com>
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <string.h>
-
-int main(int argc, char **argv)
-{
- FILE *in, *out;
- char line[4096];
-
- if (argc < 2) {
- printf("Usage: csstoh cssfile header.h \n");
- exit(0);
- }
- in = fopen(argv[1], "rm");
- if (!in) {
- printf("Failed to open input file %s (%s) \n", argv[1], strerror(errno));
- return EXIT_FAILURE;
- }
- out = fopen(argv[2], "wm");
- if (!out) {
- printf("Failed to open output file %s (%s) \n", argv[1], strerror(errno));
- return EXIT_FAILURE;
- }
-
- fprintf(out, "#ifndef __INCLUDE_GUARD_CCS_H\n");
- fprintf(out, "#define __INCLUDE_GUARD_CCS_H\n");
- fprintf(out, "\n");
- fprintf(out, "const char css[] = \n");
-
- while (!feof(in)) {
- char *c;
- if (fgets(line, 4095, in) == NULL)
- break;
- c = strchr(line, '\n');
- if (c) *c = 0;
- fprintf(out, "\t\"%s\\n\"\n", line);
- }
- fprintf(out, ";\n");
- fprintf(out, "#endif\n");
- fclose(out);
- fclose(in);
- return EXIT_SUCCESS;
-}
next reply other threads:[~2013-02-01 7:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-01 7:26 Sergey Senozhatsky [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-02-04 19:39 [Powertop] [PATCH] remove csstoh.c Kristen Carlson Accardi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130201072634.GA2587@swordfish \
--to=powertop@lists.01.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.