--------------------------------------------------------------------------- | Facility : libnform | Function : static int FN_Left_Field(FORM * form) | | Description : Get the field on the left of the current field on the | same line and the same page. Cycles through the line. | | Return Values : E_OK - success | != E_OK
| 3243 | | != E_OK - error from subordinate call |
| 3244 | +--------------------------------------------------------------------------*/ |
| 3245 | static int FN_Sorted_Last_Field(FORM * form) |
| 3246 | { |
| 3247 | return _nc_Set_Current_Field(form, |
| 3248 | Sorted_Previous_Field(form->field[form->page[form->curpage].smin])); |
| 3249 | } |
| 3250 | |
| 3251 | /*--------------------------------------------------------------------------- |
| 3252 | | Facility : libnform |
nothing calls this directly
no test coverage detected
searching dependent graphs…