VPP-327 Coding standards cleanup for vppinfra
[vpp.git] / vppinfra / vppinfra / random_isaac.h
index d3a844c..803fbd6 100644 (file)
 #ifndef included_random_isaac_h
 #define included_random_isaac_h
 
-#include <vppinfra/clib.h>             /* for u32/u64 */
+#include <vppinfra/clib.h>     /* for u32/u64 */
 #include <vppinfra/format.h>   /* for unformat_input_t */
 
 /* Bob recommends 8 for crypto, 4 for simulations */
 #define ISAAC_LOG2_SIZE   (4)
 #define ISAAC_SIZE (1 << ISAAC_LOG2_SIZE)
 
-typedef struct {
+typedef struct
+{
   uword memory[ISAAC_SIZE];
   uword a, b, c;
 } isaac_t;
@@ -70,3 +71,11 @@ void isaac_init (isaac_t * ctx, uword * results);
 int test_isaac_main (unformat_input_t * input);
 
 #endif /* included_random_isaac_h */
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "gnu")
+ * End:
+ */