##// END OF EJS Templates
bdiff: sort includes using clang-format...
Augie Fackler -
r34627:ff4c9c62 default
parent child Browse files
Show More
@@ -9,13 +9,13 b''
9 9 Based roughly on Python difflib
10 10 */
11 11
12 #include <limits.h>
12 13 #include <stdlib.h>
13 14 #include <string.h>
14 #include <limits.h>
15 15
16 #include "bdiff.h"
17 #include "bitmanipulation.h"
16 18 #include "compat.h"
17 #include "bitmanipulation.h"
18 #include "bdiff.h"
19 19
20 20 /* Hash implementation from diffutils */
21 21 #define ROL(v, n) ((v) << (n) | (v) >> (sizeof(v) * CHAR_BIT - (n)))
General Comments 0
You need to be logged in to leave comments. Login now