solenv/clang-format/excludelist |    2 -
 soltools/cpp/_cpp.c             |   73 ++++++++++++++++------------------------
 soltools/cpp/_getopt.h          |    4 +-
 3 files changed, 32 insertions(+), 47 deletions(-)

New commits:
commit 672ddcb7d7a496f4a4f761b32aceaa72e4f600ed
Author:     Philipp Hofer <philipp.ho...@protonmail.com>
AuthorDate: Thu Nov 12 13:16:52 2020 +0100
Commit:     Christian Lohmaier <lohmaier+libreoff...@googlemail.com>
CommitDate: Thu Nov 19 14:46:26 2020 +0100

    tdf#123936 Formatting files in module soltools with clang-format
    
    Change-Id: I5aa4c38b33193f33f71516e347ef1a58d0c10ae7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105709
    Tested-by: Jenkins
    Reviewed-by: Christian Lohmaier <lohmaier+libreoff...@googlemail.com>

diff --git a/solenv/clang-format/excludelist b/solenv/clang-format/excludelist
index 0256bb8c292c..6a43df5e136e 100644
--- a/solenv/clang-format/excludelist
+++ b/solenv/clang-format/excludelist
@@ -11808,10 +11808,8 @@ smoketest/smoketest.cxx
 solenv/bin/concat-deps.c
 solenv/gbuildtojson/gbuildtojson.cxx
 solenv/gcc-wrappers/wrapper.cxx
-soltools/cpp/_cpp.c
 soltools/cpp/_eval.c
 soltools/cpp/_getopt.c
-soltools/cpp/_getopt.h
 soltools/cpp/_include.c
 soltools/cpp/_lex.c
 soltools/cpp/_macro.c
diff --git a/soltools/cpp/_cpp.c b/soltools/cpp/_cpp.c
index 77a7193477c9..9dd3a294d1b5 100644
--- a/soltools/cpp/_cpp.c
+++ b/soltools/cpp/_cpp.c
@@ -24,13 +24,13 @@
 #include <stdarg.h>
 #include "cpp.h"
 
-#define OUTS    16384
+#define OUTS 16384
 static char outbuf[OUTS];
-char *outptr = outbuf;
-Source *cursource;
+char* outptr = outbuf;
+Source* cursource;
 static int nerrs;
-struct token nltoken = {NL, 0, 1, (uchar *) "\n", 0};
-char *curtime;
+struct token nltoken = { NL, 0, 1, (uchar*)"\n", 0 };
+char* curtime;
 int incdepth;
 int ifdepth;
 int ifsatisfied[NIF];
@@ -38,11 +38,10 @@ int skipping;
 
 int
 #ifdef _WIN32
-__cdecl
+    __cdecl
 #endif // _WIN32
-    main(int argc, char **argv)
+    main(int argc, char** argv)
 {
-
     Tokenrow tr;
     time_t t;
     char ebuf[BUFSIZ];
@@ -63,8 +62,7 @@ __cdecl
     exit(nerrs > 0);
 }
 
-void
-    process(Tokenrow * trp)
+void process(Tokenrow* trp)
 {
     int anymacros = 0;
 
@@ -83,8 +81,7 @@ void
             if (--incdepth >= 0)
             {
                 if (cursource->ifdepth)
-                    error(ERROR,
-                          "Unterminated conditional in #include");
+                    error(ERROR, "Unterminated conditional in #include");
                 unsetsource();
                 cursource->line += cursource->lineinc;
                 trp->tp = trp->lp;
@@ -101,9 +98,8 @@ void
             trp->tp += 1;
             control(trp);
         }
-        else
-            if (!skipping && anymacros)
-                expandrow(trp, NULL);
+        else if (!skipping && anymacros)
+            expandrow(trp, NULL);
         if (skipping)
             setempty(trp);
         puttokens(trp);
@@ -114,11 +110,10 @@ void
     }
 }
 
-void
-    control(Tokenrow * trp)
+void control(Tokenrow* trp)
 {
-    Nlist *np;
-    Token *tp;
+    Nlist* np;
+    Token* tp;
 
     tp = trp->tp;
     if (tp->type != NAME)
@@ -127,7 +122,7 @@ void
             goto kline;
         if (tp->type != NL)
             error(ERROR, "Unidentifiable control line");
-        return;                         /* else empty line */
+        return; /* else empty line */
     }
     np = lookup(tp, 0);
     if (np == NULL || ((np->flag & ISKW) == 0 && !skipping))
@@ -267,20 +262,19 @@ void
             trp->tp = tp + 1;
             expandrow(trp, "<line>");
             tp = trp->bp + 2;
-    kline:
+        kline:
             if (tp + 1 >= trp->lp || tp->type != NUMBER || tp + 3 < trp->lp
-                || (tp + 3 == trp->lp
-                    && ((tp + 1)->type != STRING || *(tp + 1)->t == 'L')))
+                || (tp + 3 == trp->lp && ((tp + 1)->type != STRING || *(tp + 
1)->t == 'L')))
             {
                 error(ERROR, "Syntax error in #line");
                 return;
             }
-            cursource->line = atol((char *) tp->t) - 1;
+            cursource->line = atol((char*)tp->t) - 1;
             if (cursource->line < 0 || cursource->line >= 32768)
                 error(WARNING, "#line specifies number out of range");
             tp = tp + 1;
             if (tp + 1 < trp->lp)
-                cursource->filename = (char *) newstring(tp->t + 1, tp->len - 
2, 0);
+                cursource->filename = (char*)newstring(tp->t + 1, tp->len - 2, 
0);
             return;
 
         case KDEFINED:
@@ -314,30 +308,24 @@ void
     return;
 }
 
-void *
-    domalloc(size_t size)
+void* domalloc(size_t size)
 {
-    void *p = malloc(size);
+    void* p = malloc(size);
 
     if (p == NULL)
         error(FATAL, "Out of memory from malloc");
     return p;
 }
 
-void
-    dofree(void *p)
-{
-    free(p);
-}
+void dofree(void* p) { free(p); }
 
-void
-    error(enum errtype type, char *string,...)
+void error(enum errtype type, char* string, ...)
 {
     va_list ap;
     char c, *cp, *ep;
-    Token *tp;
-    Tokenrow *trp;
-    Source *s;
+    Token* tp;
+    Tokenrow* trp;
+    Source* s;
     int i;
 
     fprintf(stderr, "cpp: ");
@@ -351,14 +339,13 @@ void
         {
             switch (*++ep)
             {
-
                 case 'c':
-                    c = (char) va_arg(ap, int);
+                    c = (char)va_arg(ap, int);
                     fprintf(stderr, "%c", c);
                     break;
 
                 case 's':
-                    cp = va_arg(ap, char *);
+                    cp = va_arg(ap, char*);
                     fprintf(stderr, "%s", cp);
                     break;
 
@@ -368,12 +355,12 @@ void
                     break;
 
                 case 't':
-                    tp = va_arg(ap, Token *);
+                    tp = va_arg(ap, Token*);
                     fprintf(stderr, "%.*s", (int)tp->len, tp->t);
                     break;
 
                 case 'r':
-                    trp = va_arg(ap, Tokenrow *);
+                    trp = va_arg(ap, Tokenrow*);
                     for (tp = trp->tp; tp < trp->lp && tp->type != NL; tp++)
                     {
                         if (tp > trp->tp && tp->wslen)
diff --git a/soltools/cpp/_getopt.h b/soltools/cpp/_getopt.h
index c894c2c9153f..fb128a9d381a 100644
--- a/soltools/cpp/_getopt.h
+++ b/soltools/cpp/_getopt.h
@@ -20,8 +20,8 @@
 #ifndef INCLUDED_SOLTOOLS_CPP__GETOPT_H
 #define INCLUDED_SOLTOOLS_CPP__GETOPT_H
 
-int stgetopt(int, char *const [], const char *);
-extern char *optarg;
+int stgetopt(int, char* const[], const char*);
+extern char* optarg;
 extern int optind;
 
 #endif
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to