]> granicus.if.org Git - graphviz/commitdiff
dot.demo/simple.c: [nfc] align with C99 style and clang-format
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 16 Jan 2022 18:16:16 +0000 (10:16 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 19 Jan 2022 05:45:57 +0000 (21:45 -0800)
dot.demo/simple.c

index a9424a4afcdc633f04a065a272d8ea72d4238143..48f6cf795c56d65de821acd60d8dabd905fba2a9 100644 (file)
@@ -1,5 +1,5 @@
 /*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
+ * Copyright (c) 2011 AT&T Intellectual Property
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
 
 #include <graphviz/gvc.h>
 #include <stddef.h>
+#include <stdio.h>
 
-int main(int argc, char **argv)
-{
-    GVC_t *gvc;
-    graph_t *g;
-    FILE *fp;
+int main(int argc, char **argv) {
 
-    gvc = gvContext();
+  GVC_t *gvc = gvContext();
 
-    if (argc > 1)
-       fp = fopen(argv[1], "r");
-    else
-       fp = stdin;
-    g = agread(fp, NULL);
+  FILE *fp;
+  if (argc > 1)
+    fp = fopen(argv[1], "r");
+  else
+    fp = stdin;
+  graph_t *g = agread(fp, NULL);
 
-    gvLayout(gvc, g, "dot");
+  gvLayout(gvc, g, "dot");
 
-    gvRender(gvc, g, "plain", stdout);
+  gvRender(gvc, g, "plain", stdout);
 
-    gvFreeLayout(gvc, g);
+  gvFreeLayout(gvc, g);
 
-    agclose(g);
+  agclose(g);
 
-    return (gvFreeContext(gvc));
+  return gvFreeContext(gvc);
 }