Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent the rest of the code (examples, buildtools, doc...) except for examples/SMPI...
[simgrid.git] / doc / gtut-files / 01-bones.c
index ea9a3c0..97fea93 100644 (file)
@@ -6,20 +6,22 @@
 
 #include <gras.h>
 
-int client(int argc, char *argv[]) {
-  gras_init(&argc,argv);
+int client(int argc, char *argv[])
+{
+  gras_init(&argc, argv);
 
   /* Your own code for the client process */
-  
+
   gras_exit();
   return 0;
 }
 
-int server(int argc, char *argv[]) {
-  gras_init(&argc,argv);
+int server(int argc, char *argv[])
+{
+  gras_init(&argc, argv);
 
   /* Your own code for the server process */
-  
+
   gras_exit();
   return 0;
 }