Last change
on this file since 3094 was
2759,
checked in by aslmd, 3 years ago
|
adding unmodified code from WRFV3.0.1.1, expurged from useless data +1M size
|
File size:
954 bytes
|
Rev | Line | |
---|
[2759] | 1 | #include <stdio.h> |
---|
| 2 | #include <string.h> |
---|
| 3 | |
---|
| 4 | #define INLINELEN 8092 |
---|
| 5 | |
---|
| 6 | char inln[INLINELEN] ; |
---|
| 7 | |
---|
| 8 | int protex_state = 0 ; |
---|
| 9 | |
---|
| 10 | main() |
---|
| 11 | { |
---|
| 12 | while( fgets( inln, INLINELEN, stdin ) != NULL ) |
---|
| 13 | { |
---|
| 14 | remove_nl( inln ) ; |
---|
| 15 | if ( contains_str ( inln , "<DESCRIPTION>" ) ) { |
---|
| 16 | protex_state = 1 ; |
---|
| 17 | printf("%s\n",inln) ; |
---|
| 18 | continue ; |
---|
| 19 | } |
---|
| 20 | if ( contains_str ( inln , "</DESCRIPTION>" ) ) { |
---|
| 21 | protex_state = 0 ; |
---|
| 22 | printf("%s\n",inln) ; |
---|
| 23 | continue ; |
---|
| 24 | } |
---|
| 25 | if ( ! contains_str( inln , "SCALAR DEREFS" ) && |
---|
| 26 | ! ( contains_str( inln , "STARTOFREGISTRYGENERATEDINCLUDE" ) && contains_str( inln , "i1_decl.inc" ) ) && |
---|
| 27 | ! protex_state ) { |
---|
| 28 | remove_comments ( inln ) ; |
---|
| 29 | } |
---|
| 30 | if ( ! protex_state ) { |
---|
| 31 | lower_case_str ( inln ) ; |
---|
| 32 | remove_chars ( inln, ";", '\n' ) ; |
---|
| 33 | } |
---|
| 34 | if ( empty ( inln ) ) continue ; |
---|
| 35 | if ( remove_ampersands ( inln ) ) |
---|
| 36 | printf("%s",inln) ; |
---|
| 37 | else |
---|
| 38 | printf("%s\n",inln) ; |
---|
| 39 | } |
---|
| 40 | } |
---|
| 41 | |
---|
Note: See
TracBrowser
for help on using the repository browser.