67 lines
1.6 KiB
C
67 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 1986, 1987, 1988, 1989 by Sun Microsystems, Inc.
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose and without fee is hereby granted, provided that the above
|
|
* copyright notice appear in all copies and that both that copyright
|
|
* notice and this permission notice are retained, and that the name
|
|
* of Sun Microsystems, Inc., not be used in advertising or publicity
|
|
* pertaining to this software without specific, written prior permission.
|
|
* Sun Microsystems, Inc., makes no representations about the suitability
|
|
* of this software or the interface defined in this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*/
|
|
#ifndef lint
|
|
static char sccsid[] = "@(#)inqtextentpas.c 1.1 94/10/31 Copyr 1983 Sun Micro";
|
|
#endif
|
|
|
|
/*
|
|
Copyright (c) 1983 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include "f77strings.h"
|
|
|
|
int inquire_text_extent_2();
|
|
int inquire_text_extent_3();
|
|
|
|
int inqtextextent2(s, dx, dy)
|
|
char *s;
|
|
double *dx, *dy;
|
|
{
|
|
char *sptr;
|
|
char pasarg[257];
|
|
int i,strlen;
|
|
float tdx,tdy;
|
|
|
|
strlen = 256;
|
|
sptr = s+256;
|
|
while ((*--sptr) == ' ') {strlen--;};
|
|
strncpy (pasarg,s,strlen);
|
|
pasarg[strlen] = '\0';
|
|
i = inquire_text_extent_2(pasarg, &tdx, &tdy);
|
|
*dx=tdx;
|
|
*dy=tdy;
|
|
return(i);
|
|
}
|
|
|
|
int inqtextextent3(s, dx, dy, dz)
|
|
char *s;
|
|
double *dx, *dy, *dz;
|
|
{
|
|
char *sptr;
|
|
char pasarg[257];
|
|
int i,strlen;
|
|
float tdx,tdy,tdz;
|
|
|
|
strlen = 256;
|
|
sptr = s+256;
|
|
while ((*--sptr) == ' ') {strlen--;};
|
|
strncpy (pasarg,s,strlen);
|
|
pasarg[strlen] = '\0';
|
|
i = inquire_text_extent_3(pasarg, &dx, &dy, &dz);
|
|
*dx=tdx;
|
|
*dy=tdy;
|
|
*dz=tdz;
|
|
return(i);
|
|
}
|
|
|