This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/deps/cdk-5.0-20161210/man/cdk_params.3
2017-03-20 21:40:32 +10:00

92 lines
2.2 KiB
Groff

'\" t
.\" $Id: cdk_params.3,v 1.4 2012/03/22 01:11:47 tom Exp $
.de XX
..
.TH cdk_params 3
.SH NAME
.XX CDKparamNumber
.XX CDKparamNumber2
.XX CDKparamString
.XX CDKparamString2
.XX CDKparseParams
.XX CDKparsePosition
.XX CDKparamValue
cdk_params \- Cdk command-line parsing
.SH SYNOPSIS
.LP
.B cc
.RI "[ " "flag" " \|.\|.\|. ] " "file" " \|.\|.\|."
.B \-lcdk
.RI "[ " "library" " \|.\|.\|. ]"
.LP
#include <cdk.h>
.nf
.TP 15
.B "int CDKparamNumber ("
.BI "CDK_PARAMS *" "params",
.BI "int " "option");
.TP 15
.B "int CDKparamNumber2 ("
.BI "CDK_PARAMS *" "params",
.BI "int " "option",
.BI "int " "missing");
.TP 15
.B "char * CDKparamString ("
.BI "CDK_PARAMS *" "params",
.BI "int " "option");
.TP 15
.B "char * CDKparamString2 ("
.BI "CDK_PARAMS *" "params",
.BI "int " "option",
.BI "const char *" "missing");
.TP 15
.B "void CDKparseParams ("
.BI "int " "argc",
.BI "char **" "argv",
.BI "CDK_PARAMS *" "params",
.BI "const char *" "options");
.TP 15
.B "int CDKparsePosition ("
.BI "char *" "string");
.TP 15
.B "int CDKparamValue ("
.BI "CDK_PARAMS * " "params",
.BI "int " "option",
.BI "int " "missing");
.fi
.SH DESCRIPTION
These are a set of functions used to implement the command-line utilities and
demonstration programs for Cdk.
Rather than set the programs' options at initialization,
they construct a simple database which holds the common parameters
using \fBCDKparseParams()\fP.
.
.SH AVAILABLE FUNCTIONS
.TP 5
.B CDKparamNumber
Retrieves an integer (or boolean) option value from the parsed command-line.
.TP 5
.B CDKparamNumber2
Retrieves an optional integer (or boolean) value from the parsed command-line.
If the command line option is not present, the \fImissing\fP value is used.
.TP 5
.B CDKparamString
Retrieves a string option value from the parsed command-line.
.TP 5
.B CDKparamString2
Retrieve an optional string option value from the parsed command-line.
.TP 5
.B CDKparamValue
Retrieve an integer (or boolean) option value from the parsed command-line.
.TP 5
.B CDKparseParams
Parse the given argc/argv command-line, with the options passed to
getopt()'s 3rd parameter.
.TP 5
.B CDKparsePosition
Parse the string as one of CDK's positioning keywords, or an actual position.
.
.SH SEE ALSO
cdk_position (3),
getopt (3)