--------------------------------------------------------------------------- | Facility : libnform | Function : static int FN_First_Field(FORM * form) | | Description : Move to the first field on the current page of the form | | Return Values : E_OK - success | != E_OK - error from subordinate call +-----------------------
| 3147 | | Return Values : E_OK - success |
| 3148 | | != E_OK - error from subordinate call |
| 3149 | +--------------------------------------------------------------------------*/ |
| 3150 | static int FN_Previous_Field(FORM * form) |
| 3151 | { |
| 3152 | return _nc_Set_Current_Field(form, |
| 3153 | Previous_Field_On_Page(form->current)); |
| 3154 | } |
| 3155 | |
| 3156 | /*--------------------------------------------------------------------------- |
no test coverage detected
searching dependent graphs…