mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-20 18:32:01 +00:00
Added style + indent rule, fixed some indenting as well
This commit is contained in:
parent
a31eacf1bd
commit
ccd8f1acc6
3 changed files with 14 additions and 10 deletions
6
ftepp.c
6
ftepp.c
|
@ -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);
|
||||
|
|
10
include.mk
10
include.mk
|
@ -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
8
test.c
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue