Added style + indent rule, fixed some indenting as well

This commit is contained in:
Dale Weiler 2013-08-19 02:16:16 +00:00
parent a31eacf1bd
commit ccd8f1acc6
3 changed files with 14 additions and 10 deletions

View file

@ -184,7 +184,7 @@ static char *ftepp_predef_timestamp(lex_file *context) {
char *value;
size_t size;
#ifdef _MSC_VER
char buffer[64];
char buffer[64];
#endif
if (stat(context->name, &finfo))
return util_strdup("\"<failed to determine timestamp>\"");
@ -197,8 +197,8 @@ static char *ftepp_predef_timestamp(lex_file *context) {
#ifndef _MSC_VER
find = ctime(&finfo.st_mtime);
#else
ctime_s(buffer, sizeof(buffer), &finfo.st_mtime);
find = buffer;
ctime_s(buffer, sizeof(buffer), &finfo.st_mtime);
find = buffer;
#endif
value = (char*)mem_a(strlen(find) + 1);

View file

@ -108,9 +108,13 @@ uninstall:
rm -f $(DESTDIR)$(MANDIR)/man1/doc/qcvm.1
rm -f $(DESTDIR)$(MANDIR)/man1/doc/gmqpak.1
STYLE_MATCH = \( -name '*.[ch]' -or -name '*.def' \)
whitespace:
find . -type f \( -name '*.[ch]' -or -name '*.def' \) -exec sed -i 's/ *$$//' '{}' ';'
find . -type f $(STYLE_MATCH) -exec sed -i 's/ *$$//' '{}' ';'
newline:
find . -type f \( -name '*.[ch]' -or -name '*.def' \) -exec sed -i -e '$$a\' '{}' ';'
find . -type f $(STYLE_MATCH) -exec sed -i -e '$$a\' '{}' ';'
indent:
find . -type f $(STYLE_MATCH) -exec sed -i 's/\t/ /g' '{}' ';'
style: whitespace newline indent

8
test.c
View file

@ -166,8 +166,8 @@ static int task_pclose(FILE **handles) {
tmpnam(open->name_err);
tmpnam(open->name_out);
#else
tmpnam_s(open->name_err, L_tmpnam);
tmpnam_s(open->name_out, L_tmpnam);
tmpnam_s(open->name_err, L_tmpnam);
tmpnam_s(open->name_out, L_tmpnam);
#endif
(void)mode; /* excluded */
@ -193,8 +193,8 @@ static int task_pclose(FILE **handles) {
mem_d(open);
}
# define popen _popen
# define pclose _pclose
# define popen _popen
# define pclose _pclose
#endif /*! _WIN32 */
#define TASK_COMPILE 0