]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/performance_test.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / test_src / performance_test.h
index bce714be647ec5a6f6b5617ad197f0df901f2681..f40a496cd1b6bf4d8510d4f069d397ee4f36a5da 100644 (file)
 #include <avr/interrupt.h>
 
 
-#define START_TIMER TCCR1B=1
-#define STOP_TIMER  TCCR1B=0
+#define START_TIMER  TCCR1B=1
+#define STOP_TIMER   TCCR1B=0
 
 void calibrateTimer(void);
 void startTimer(uint8_t granularity);
 uint64_t stopTimer(void);
-void getOverhead(uint16_t* constoh, uint16_t* intoh);
+void getOverhead(uint16_t *constoh, uint16_t *intoh);
 
 void print_time_P(PGM_P s, uint64_t t);
 void print_overhead(void);