void strfc

(
/*  Inputs:   */
	 char *ftext        /*  Text-string, from a FORTRAN routine.          */
	,int ftext_length   /*  Text-string-length -- from a FORTRAN routine. */
    
/*  Output:  */
	,char *ctext        /*  Text-string, to a C routine.                  */
/*  Input:   */
	,int ctext_length   /*  Text-string-length -- to a C routine.         */
/*  Output:  */
	,int *ctext_lnb     /*  Last non-blank in resulting ctext.            */

	        )

/*  Description:     Convert a FORTRAN-defined text-string into a C-string.

	Take a text-string, defined in a FORTRAN routine and passed into
a C routine, and copy it into a text-string defined in that C routine.
A null is appended to the string.

*/