--------------------------------------------------------------------------- | Facility : libnform | Function : static int FN_Previous_Field(FORM * form) | | Description : Move to the previous field on the current page of the | form | | Return Values : E_OK - success | != E_OK - error from subordinate c
| 3132 | | != E_OK - error from subordinate call |
| 3133 | +--------------------------------------------------------------------------*/ |
| 3134 | static int FN_Next_Field(FORM * form) |
| 3135 | { |
| 3136 | return _nc_Set_Current_Field(form, |
| 3137 | Next_Field_On_Page(form->current)); |
| 3138 | } |
| 3139 | |
| 3140 | /*--------------------------------------------------------------------------- |
| 3141 | | Facility : libnform |
nothing calls this directly
no test coverage detected
searching dependent graphs…