--------------------------------------------------------------------------- | Facility : libnform | Function : static FIELD *Left_Neighbour_Field(FIELD * field) | | Description : Get the left neighbour of the field on the same line | and the same page. Cycles through the line. | | Return Values : Pointer to left neighbour field. +--------------------
| 2940 | field_on_page = field_on_page->sprev; |
| 2941 | if (Field_Is_Selectable(field_on_page)) |
| 2942 | break; |
| 2943 | } while(field_on_page!=field); |
| 2944 | |
| 2945 | return (field_on_page); |
| 2946 | } |
| 2947 | |
| 2948 | /*--------------------------------------------------------------------------- |
| 2949 | | Facility : libnform |
| 2950 | | Function : static FIELD *Left_Neighbour_Field(FIELD * field) |
| 2951 | | |
| 2952 | | Description : Get the left neighbour of the field on the same line |
| 2953 | | and the same page. Cycles through the line. |
| 2954 | | |
| 2955 | | Return Values : Pointer to left neighbour field. |
| 2956 | +--------------------------------------------------------------------------*/ |
| 2957 | INLINE static FIELD *Left_Neighbour_Field(FIELD * field) |
| 2958 | { |
| 2959 | FIELD *field_on_page = field; |
| 2960 |
no test coverage detected
searching dependent graphs…