--------------------------------------------------------------------------- | Facility : libnform | Function : static FIELD *Right_Neighbour_Field(FIELD * field) | | Description : Get the right neighbour of the field on the same line | and the same page. | | Return Values : Pointer to right neighbour field. +------------------------------------------
| 2966 | do |
| 2967 | { |
| 2968 | field_on_page = Sorted_Previous_Field(field_on_page); |
| 2969 | } while(field_on_page->frow != field->frow); |
| 2970 | |
| 2971 | return (field_on_page); |
| 2972 | } |
| 2973 | |
| 2974 | /*--------------------------------------------------------------------------- |
| 2975 | | Facility : libnform |
| 2976 | | Function : static FIELD *Right_Neighbour_Field(FIELD * field) |
| 2977 | | |
| 2978 | | Description : Get the right neighbour of the field on the same line |
| 2979 | | and the same page. |
| 2980 | | |
| 2981 | | Return Values : Pointer to right neighbour field. |
| 2982 | +--------------------------------------------------------------------------*/ |
no test coverage detected
searching dependent graphs…