]> rtime.felk.cvut.cz Git - orte.git/blobdiff - orte/liborte/RTPSUtils.c
Reformat the sources with orte/uncrustify script
[orte.git] / orte / liborte / RTPSUtils.c
index 89ca08520bb311f287a806db5863b3b3485c3c94..01ca7c26c1fbd3228651b71366f1d7bb3a38b3cd 100644 (file)
@@ -1,64 +1,75 @@
 /*
- *  $Id: RTPSUtils.c,v 0.0.0.1          2003/09/13 
+ *  $Id: RTPSUtils.c,v 0.0.0.1          2003/09/13
  *
  *  DEBUG:  section 50          Utils
  *
- *  -------------------------------------------------------------------  
- *                                ORTE                                 
- *                      Open Real-Time Ethernet                       
- *                                                                    
- *                      Copyright (C) 2001-2006                       
- *  Department of Control Engineering FEE CTU Prague, Czech Republic  
- *                      http://dce.felk.cvut.cz                       
- *                      http://www.ocera.org                          
- *                                                                    
- *  Author:             Petr Smolik    petr@smoliku.cz             
- *  Advisor:            Pavel Pisa                                   
- *  Project Responsible: Zdenek Hanzalek                              
+ *  -------------------------------------------------------------------
+ *                                ORTE
+ *                      Open Real-Time Ethernet
+ *
+ *                      Copyright (C) 2001-2006
+ *  Department of Control Engineering FEE CTU Prague, Czech Republic
+ *                      http://dce.felk.cvut.cz
+ *                      http://www.ocera.org
+ *
+ *  Author:              Petr Smolik   petr@smoliku.cz
+ *  Advisor:             Pavel Pisa
+ *  Project Responsible: Zdenek Hanzalek
  *  --------------------------------------------------------------------
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
- *  
+ *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
- *  
- */ 
+ *
+ */
 
 #include "orte_all.h"
 
 /**********************************************************************************/
-int gavl_cmp_ntp_time(const NtpTime *a,const NtpTime *b) {
-  return NtpTimeCmp(*a,*b);
+int
+gavl_cmp_ntp_time(const NtpTime *a, const NtpTime *b)
+{
+  return NtpTimeCmp(*a, *b);
 }
 
 /**********************************************************************************/
-int gavl_cmp_sn(const SequenceNumber *a, const SequenceNumber *b) {
-  return SeqNumberCmp(*a,*b);
+int
+gavl_cmp_sn(const SequenceNumber *a, const SequenceNumber *b)
+{
+  return SeqNumberCmp(*a, *b);
 }
 
 /**********************************************************************************/
-int 
-gavl_cmp_guid(const GUID_RTPS *a, const GUID_RTPS *b) {
+int
+gavl_cmp_guid(const GUID_RTPS *a, const GUID_RTPS *b)
+{
   //HID
-  if (a->hid>b->hid) return 1;
-  if (a->hid<b->hid) return -1;
+  if (a->hid > b->hid)
+    return 1;
+  if (a->hid < b->hid)
+    return -1;
   //AID
-  if (a->aid>b->aid) return 1;
-  if (a->aid<b->aid) return -1;
+  if (a->aid > b->aid)
+    return 1;
+  if (a->aid < b->aid)
+    return -1;
   //OID
-  if (a->oid>b->oid) return 1;
-  if (a->oid<b->oid) return -1;
+  if (a->oid > b->oid)
+    return 1;
+  if (a->oid < b->oid)
+    return -1;
   return 0;
 }
 
 /**********************************************************************************/
-int 
-gavl_cmp_str(const char *const *a,const char *const *b) {
-  return strcmp((const char *)*a, (const char*)*b);
+int
+gavl_cmp_str(const char *const *a, const char *const *b)
+{
+  return strcmp((const char *)*a, (const char *)*b);
 }
-