QSprob QScreate_prob (const char *name, int objsense)
QSprob p;

p = QScreate_prob ("binky", QS_MIN);
if (p == (QSprob) NULL) {
    fprintf (stderr, "Unable to initialize LP data structure\n");
} else {
    /* Build the LP with calls to QSnew_row () and QSadd_col () */
}