104 /* alias the buffers for better handling */ |
104 /* alias the buffers for better handling */ |
105 CxBuffer *wbuf = &hd->primary_buffer; |
105 CxBuffer *wbuf = &hd->primary_buffer; |
106 CxBuffer *ifilebuf = &hd->secondary_buffer; |
106 CxBuffer *ifilebuf = &hd->secondary_buffer; |
107 |
107 |
108 /* local information */ |
108 /* local information */ |
109 size_t sp = (size_t)-1; |
109 size_t sp = SIZE_MAX; |
110 |
110 |
111 int isstring = 0, iscomment = 0, isinclude = 0, parseinclude = 0; |
111 int isstring = 0, iscomment = 0, isinclude = 0, parseinclude = 0; |
112 char quote = '\0'; |
112 char quote = '\0'; |
113 int isescaping = 0; |
113 int isescaping = 0; |
114 |
114 |
304 |
304 |
305 /* alias the buffers for better handling */ |
305 /* alias the buffers for better handling */ |
306 CxBuffer *wbuf = &hd->primary_buffer; |
306 CxBuffer *wbuf = &hd->primary_buffer; |
307 |
307 |
308 /* local information */ |
308 /* local information */ |
309 size_t sp = (size_t)-1; |
309 size_t sp = SIZE_MAX; |
310 int isstring = 0, iscomment = 0, isimport = 0; |
310 int isstring = 0, iscomment = 0, isimport = 0; |
311 char quote = '\0'; |
311 char quote = '\0'; |
312 int isescaping = 0; |
312 int isescaping = 0; |
313 |
313 |
314 if (hd->multiline_comment) { |
314 if (hd->multiline_comment) { |