| 43 | struct AreaLine |
| 44 | { |
| 45 | AreaLine() |
| 46 | { |
| 47 | length = 0; |
| 48 | maxLength = DEFAULT_STRING_LENGTH; |
| 49 | data = startBuf; |
| 50 | prev = next = NULL; |
| 51 | lineExtra = lineStyle = 0; |
| 52 | } |
| 53 | |
| 54 | AreaChar startBuf[DEFAULT_STRING_LENGTH]; |
| 55 | AreaChar *data; |
nothing calls this directly
no outgoing calls
no test coverage detected