@@ -43,7 +43,7 @@ typedef struct {
4343 * @param fmt the printf's format
4444 * @param ... format's parameters
4545 */
46- void sc_raise (const char * fmt , ...) SEC ( BCSCAN ) ;
46+ void sc_raise (const char * fmt , ...);
4747
4848/**
4949 * @ingroup scan
@@ -52,7 +52,7 @@ void sc_raise(const char *fmt, ...) SEC(BCSCAN);
5252 *
5353 * @param bc the bc structure
5454 */
55- void bc_create (bc_t * bc ) SEC ( BCSCAN ) ;
55+ void bc_create (bc_t * bc );
5656
5757/**
5858 * @ingroup scan
@@ -61,7 +61,7 @@ void bc_create(bc_t * bc) SEC(BCSCAN);
6161 *
6262 * @param bc the bc structure
6363 */
64- void bc_destroy (bc_t * bc ) SEC ( BCSCAN ) ;
64+ void bc_destroy (bc_t * bc );
6565
6666/**
6767 * @ingroup scan
@@ -71,7 +71,7 @@ void bc_destroy(bc_t * bc) SEC(BCSCAN);
7171 * @param bc the bc structure
7272 * @param newsize the new size
7373 */
74- void bc_resize (bc_t * bc , dword newsize ) SEC ( BCSCAN ) ;
74+ void bc_resize (bc_t * bc , dword newsize );
7575
7676/**
7777 * @ingroup scan
@@ -81,7 +81,7 @@ void bc_resize(bc_t * bc, dword newsize) SEC(BCSCAN);
8181 * @param bc the bc structure
8282 * @param code the byte
8383 */
84- void bc_add1 (bc_t * bc , byte code ) SEC ( BCSCAN ) ;
84+ void bc_add1 (bc_t * bc , byte code );
8585
8686/**
8787 * @ingroup scan
@@ -91,7 +91,7 @@ void bc_add1(bc_t * bc, byte code) SEC(BCSCAN);
9191 * @param bc the bc structure
9292 * @param code the byte
9393 */
94- void bc_store1 (bc_t * bc , addr_t offset , byte code ) SEC ( BCSCAN ) ;
94+ void bc_store1 (bc_t * bc , addr_t offset , byte code );
9595
9696/**
9797 * @ingroup scan
@@ -101,7 +101,7 @@ void bc_store1(bc_t * bc, addr_t offset, byte code) SEC(BCSCAN);
101101 * @param bc the bc structure
102102 * @param code the word
103103 */
104- void bc_add_word (bc_t * bc , word code ) SEC ( BCSCAN ) ;
104+ void bc_add_word (bc_t * bc , word code );
105105
106106/**
107107 * @ingroup scan
@@ -111,7 +111,7 @@ void bc_add_word(bc_t * bc, word code) SEC(BCSCAN);
111111 * @param bc the bc structure
112112 * @param code the dword
113113 */
114- void bc_add_dword (bc_t * bc , dword code ) SEC ( BCSCAN ) ;
114+ void bc_add_dword (bc_t * bc , dword code );
115115
116116/**
117117 * @ingroup scan
@@ -122,7 +122,7 @@ void bc_add_dword(bc_t * bc, dword code) SEC(BCSCAN);
122122 * @param str the raw-string. the string must starts with \". the string must also contains the ending \".
123123 * @return a pointer of src to the next character after the second \"
124124 */
125- char * bc_store_string (bc_t * bc , char * src ) SEC ( BCSCAN ) ;
125+ char * bc_store_string (bc_t * bc , char * src );
126126
127127/**
128128 * @ingroup scan
@@ -133,7 +133,7 @@ char *bc_store_string(bc_t * bc, char *src) SEC(BCSCAN);
133133 * @param str the raw-string. the string must starts with `. the string must also contains the ending `.
134134 * @return a pointer of src to the next character after the second `
135135 */
136- char * bc_store_macro (bc_t * bc , char * src ) SEC ( BCSCAN ) ;
136+ char * bc_store_macro (bc_t * bc , char * src );
137137
138138/**
139139 * @ingroup scan
@@ -142,7 +142,7 @@ char *bc_store_macro(bc_t * bc, char *src) SEC(BCSCAN);
142142 *
143143 * @param bc the bc structure
144144 */
145- void bc_eoc (bc_t * bc ) SEC ( BCSCAN ) ;
145+ void bc_eoc (bc_t * bc );
146146
147147/**
148148 * @ingroup scan
@@ -152,7 +152,7 @@ void bc_eoc(bc_t * bc) SEC(BCSCAN);
152152 * @param dest the destination
153153 * @param src the code to be appended to dest
154154 */
155- void bc_append (bc_t * dest , bc_t * src ) SEC ( BCSCAN ) ;
155+ void bc_append (bc_t * dest , bc_t * src );
156156
157157/**
158158 * @ingroup scan
@@ -163,7 +163,7 @@ void bc_append(bc_t * dest, bc_t * src) SEC(BCSCAN);
163163 * @param src the code to be appended to dest
164164 * @param n the size of the src to be copied
165165 */
166- void bc_add_n (bc_t * dest , byte * src , dword n ) SEC ( BCSCAN ) ;
166+ void bc_add_n (bc_t * dest , byte * src , dword n );
167167
168168/**
169169 * @ingroup scan
@@ -179,7 +179,7 @@ void bc_add_n(bc_t * dest, byte * src, dword n) SEC(BCSCAN);
179179 * @param dest the bc segment
180180 * @param idx the index of the function
181181 */
182- void bc_add_fcode (bc_t * dest , long idx ) SEC ( BCSCAN ) ;
182+ void bc_add_fcode (bc_t * dest , long idx );
183183
184184/**
185185 * @ingroup scan
@@ -189,7 +189,7 @@ void bc_add_fcode(bc_t * dest, long idx) SEC(BCSCAN);
189189 * @param dest the bc segment
190190 * @param idx the index of the procedure
191191 */
192- void bc_add_pcode (bc_t * dest , long idx ) SEC ( BCSCAN ) ;
192+ void bc_add_pcode (bc_t * dest , long idx );
193193
194194/**
195195 * @ingroup scan
@@ -200,7 +200,7 @@ void bc_add_pcode(bc_t * dest, long idx) SEC(BCSCAN);
200200 * @param lib the index of the library
201201 * @param idx the index of the function
202202 */
203- void bc_add_extfcode (bc_t * dest , int lib , long idx ) SEC ( BCSCAN ) ;
203+ void bc_add_extfcode (bc_t * dest , int lib , long idx );
204204
205205/**
206206 * @ingroup scan
@@ -211,7 +211,7 @@ void bc_add_extfcode(bc_t * dest, int lib, long idx) SEC(BCSCAN);
211211 * @param lib the index of the library
212212 * @param idx the index of the procedure
213213 */
214- void bc_add_extpcode (bc_t * dest , int lib , long idx ) SEC ( BCSCAN ) ;
214+ void bc_add_extpcode (bc_t * dest , int lib , long idx );
215215
216216/**
217217 * @ingroup scan
@@ -221,7 +221,7 @@ void bc_add_extpcode(bc_t * dest, int lib, long idx) SEC(BCSCAN);
221221 * @param bc the bc segment
222222 * @param idx the address
223223 */
224- void bc_add_addr (bc_t * bc , addr_t idx ) SEC ( BCSCAN ) ;
224+ void bc_add_addr (bc_t * bc , addr_t idx );
225225
226226/**
227227 * @ingroup scan
@@ -233,7 +233,7 @@ void bc_add_addr(bc_t * bc, addr_t idx) SEC(BCSCAN);
233233 * @param true_ip the jump-address when on true
234234 * @param false_ip the jump-address when on false
235235 */
236- void bc_add_ctrl (bc_t * bc , code_t code , addr_t true_ip , addr_t false_ip ) SEC ( BCSCAN ) ;
236+ void bc_add_ctrl (bc_t * bc , code_t code , addr_t true_ip , addr_t false_ip );
237237
238238/**
239239 * @ingroup scan
@@ -243,7 +243,7 @@ void bc_add_ctrl(bc_t * bc, code_t code, addr_t true_ip, addr_t false_ip) SEC(BC
243243 * @param bc the bc segment
244244 * @param v the number
245245 */
246- void bc_add_creal (bc_t * bc , var_num_t v ) SEC ( BCSCAN ) ;
246+ void bc_add_creal (bc_t * bc , var_num_t v );
247247
248248/**
249249 * @ingroup scan
@@ -253,6 +253,6 @@ void bc_add_creal(bc_t * bc, var_num_t v) SEC(BCSCAN);
253253 * @param bc the bc segment
254254 * @param v the number
255255 */
256- void bc_add_cint (bc_t * bc , var_int_t v ) SEC ( BCSCAN ) ;
256+ void bc_add_cint (bc_t * bc , var_int_t v );
257257
258258#endif
0 commit comments