--------------------------------------------------------------------------- | Facility : libnform | Function : static bool Is_There_Room_For_A_Line(FORM * form) | | Description : Check whether or not there is enough room in the | buffer to enter a whole line. | | Return Values : TRUE - there is enough space | FALSE - there is no
| 1956 | /*--------------------------------------------------------------------------- |
| 1957 | | Facility : libnform |
| 1958 | | Function : static bool Is_There_Room_For_A_Line(FORM * form) |
| 1959 | | |
| 1960 | | Description : Check whether or not there is enough room in the |
| 1961 | | buffer to enter a whole line. |
| 1962 | | |
| 1963 | | Return Values : TRUE - there is enough space |
| 1964 | | FALSE - there is not enough space |
| 1965 | +--------------------------------------------------------------------------*/ |
| 1966 | INLINE static bool Is_There_Room_For_A_Line(FORM * form) |
| 1967 | { |
| 1968 | FIELD *field = form->current; |
| 1969 | char *begin_of_last_line, *s; |
| 1970 |
no test coverage detected
searching dependent graphs…