Reformat. Fix headguard name. Clean up.
[bertos.git] / bertos / mware / parser.c
index cc20b4e6a79e97a8fefef5e9323fb3e5ef141390..6e23bcec5115498cc2268db07e7aeaa780d84b91 100644 (file)
  * All Rights Reserved.
  * -->
  *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- * \author Stefano Fedrigo <aleph@develer.com>
- * \author Giovanni Bajo <rasky@develer.com>
- *
  * \brief Serial protocol parser and commands.
  *
  * This file contains the serial protocol parser and
  * using an union: the element of the union to use for each
  * argument is determined by format strings present in the
  * CmdTemplate table.
+ *
+ * \version $Id$
+ *
+ * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Stefano Fedrigo <aleph@develer.com>
+ * \author Giovanni Bajo <rasky@develer.com>
+ *
+ *
  */
 
 
 #include "parser.h"
+
+#include "appconfig.h"
+
 #include <drv/ser.h>
+#include <mware/hashtable.h>
 
 #include <stdlib.h> // atol(), NULL
 #include <string.h> // strchr(), strcmp()
 
-#include <mware/hashtable.h>
 
-#include "appconfig.h"
 
 #define ARG_SEP_S " "
 #define ARG_SEP_C ' '