.TH PGAGetRealInitType 2 "05/01/95" " " "PGAPack" .SH NAME PGAGetRealInitType \- returns the type of scheme used to randomly initialize strings of data type PGA_DATATYPE_REAL. .SH INPUT PARAMETERS .PD 0 .TP ctx - context variable .PD 1 .SH OUTPUT PARAMETERS .PD 0 .TP none .PD 1 .SH SYNOPSIS .nf #include "pgapack.h" int PGAGetRealInitType(ctx) PGAContext *ctx .fi .SH LOCATION real.c .SH EXAMPLE .nf Example: PGAContext *ctx; int inittype; : inittype = PGAGetRealInitType(ctx); switch (inittype) { case PGA_RINIT_PERCENT: printf("Data Type = PGA_RINIT_PERCENT\n"); break; case PGA_RINIT_RANGE: printf("Data Type = PGA_RINIT_RANGE\n"); break; } .fi