IOSS 2.0
Loading...
Searching...
No Matches
Ioss_Getline.h
Go to the documentation of this file.
1
2/*
3 * Copyright (C) 1991, 1992, 1993, 2022, 2023 by Chris Thewalt (thewalt@ce.berkeley.edu)
4 *
5 * Permission to use, copy, modify, and distribute this software
6 * for any purpose and without fee is hereby granted, provided
7 * that the above copyright notices appear in all copies and that both the
8 * copyright notice and this permission notice appear in supporting
9 * documentation. This software is provided "as is" without express or
10 * implied warranty.
11 *
12 * Thanks to the following people who have provided enhancements and fixes:
13 * Ron Ueberschaer, Christoph Keller, Scott Schwartz, Steven List,
14 * DaviD W. Sanderson, Goran Bostrom, Michael Gleason, Glenn Kasten,
15 * Edin Hodzic, Eric J Bivona, Kai Uwe Rommel, Danny Quah, Ulrich Betzler
16 */
17
18#pragma once
19
20#include "ioss_export.h"
21
22namespace Ioss {
23 IOSS_EXPORT char *getline_int(const char *); /* read a line of input */
24 IOSS_EXPORT void gl_setwidth(int); /* specify width of screen */
25 IOSS_EXPORT void gl_histadd(const char *); /* adds entries to hist */
26} // namespace Ioss
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40
void gl_setwidth(int w)
Definition Ioss_Getline.C:316
char * getline_int(const char *prompt)
Definition Ioss_Getline.C:330
void gl_histadd(const char *buf)
Definition Ioss_Getline.C:753