-
Notifications
You must be signed in to change notification settings - Fork 6
/
typeChange.sh
48 lines (38 loc) · 2.16 KB
/
typeChange.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
find $1 -type f -exec sed -i 's/B_B_B_BOOL /boolean /g' {} \;
find $1 -type f -exec sed -i 's/B_B_B_TRUE /true /g' {} \;
find $1 -type f -exec sed -i 's/B_B_B_FALSE /false /g' {} \;
find $1 -type f -exec sed -i 's/B_B_BOOL /boolean /g' {} \;
find $1 -type f -exec sed -i 's/B_B_TRUE /true /g' {} \;
find $1 -type f -exec sed -i 's/B_B_FALSE /false /g' {} \;
find $1 -type f -exec sed -i 's/B_BOOL /boolean /g' {} \;
find $1 -type f -exec sed -i 's/B_TRUE /true /g' {} \;
find $1 -type f -exec sed -i 's/B_FALSE /false /g' {} \;
find $1 -type f -exec sed -i 's/BOOL(/boolean(/g' {} \;
find $1 -type f -exec sed -i 's/BOOL /boolean /g' {} \;
find $1 -type f -exec sed -i 's/TRUE /true /g' {} \;
find $1 -type f -exec sed -i 's/FALSE /false /g' {} \;
find $1 -type f -exec sed -i 's/TRUE;/true; /g' {} \;
find $1 -type f -exec sed -i 's/FALSE;/false; /g' {} \;
find $1 -type f -exec sed -i 's/TRUE)/true) /g' {} \;
find $1 -type f -exec sed -i 's/FALSE)/false) /g' {} \;
find $1 -type f -exec sed -i 's/QWORD /uint64_t /g' {} \;
find $1 -type f -exec sed -i 's/DWORD /uint32_t /g' {} \;
find $1 -type f -exec sed -i 's/WORD /uint16_t /g' {} \;
find $1 -type f -exec sed -i 's/Ptr)uint8_t/Ptr)(uint8_t /g' {} \;
find $1 -type f -exec sed -i 's/ocal)uint8_t/ocal)(uint8_t /g' {} \;
find $1 -type f -exec sed -i 's/BYTE /uint8_t /g' {} \;
find $1 -type f -exec sed -i 's/(BYTE/(uint8_t /g' {} \;
find $1 -type f -exec sed -i 's/(BYTE)/(uint8_t) /g' {} \;
find $1 -type f -exec sed -i 's/BYTE,/uint8_t,/g' {} \;
find $1 -type f -exec sed -i 's/UINT /uint32_t /g' {} \;
find $1 -type f -exec sed -i 's/UINT8 /uint8_t /g' {} \;
find $1 -type f -exec sed -i 's/UINT16 /uint16_t /g' {} \;
find $1 -type f -exec sed -i 's/(UINT16)/(uint16_t)/g' {} \;
find $1 -type f -exec sed -i 's/UINT32 /uint32_t /g' {} \;
find $1 -type f -exec sed -i 's/UINT64 /uint64_t /g' {} \;
find $1 -type f -exec sed -i 's/INT8 /int8_t /g' {} \;
find $1 -type f -exec sed -i 's/INT16 /int16_t /g' {} \;
find $1 -type f -exec sed -i 's/INT32 /int32_t /g' {} \;
find $1 -type f -exec sed -i 's/(INT32)/(int32_t)/g' {} \;
find $1 -type f -exec sed -i 's/INT64 /int64_t /g' {} \;
find $1 -type f -exec sed -i 's/LONG /int64_t /g' {} \;