--------------------------------------------------------------------------- | Facility : libnform | Function : static int FN_Right_Field(FORM * form) | | Description : Get the field on the right of the current field on the | same line and the same page. Cycles through the line. | | Return Values : E_OK - success | != E_O
| 3259 | | != E_OK - error from subordinate call |
| 3260 | +--------------------------------------------------------------------------*/ |
| 3261 | static int FN_Left_Field(FORM * form) |
| 3262 | { |
| 3263 | return _nc_Set_Current_Field(form, |
| 3264 | Left_Neighbour_Field(form->current)); |
| 3265 | } |
| 3266 | |
| 3267 | /*--------------------------------------------------------------------------- |
| 3268 | | Facility : libnform |
nothing calls this directly
no test coverage detected
searching dependent graphs…