--------------------------------------------------------------------------- | Facility : libnform | Function : static int FN_Sorted_Last_Field(FORM * form) | | Description : Move to the sorted last field on the current page | of the form. | | Return Values : E_OK - success | != E_OK - error from subordinate call
| 3227 | | != E_OK - error from subordinate call |
| 3228 | +--------------------------------------------------------------------------*/ |
| 3229 | static int FN_Sorted_First_Field(FORM * form) |
| 3230 | { |
| 3231 | return _nc_Set_Current_Field(form, |
| 3232 | Sorted_Next_Field(form->field[form->page[form->curpage].smax])); |
| 3233 | } |
| 3234 | |
| 3235 | /*--------------------------------------------------------------------------- |
| 3236 | | Facility : libnform |
nothing calls this directly
no test coverage detected
searching dependent graphs…