Menu

[b84aab]: / src / modules / mod_utils.h  Maximize  Restore  History

Download this file

28 lines (22 with data), 761 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// This file is part of SmallBASIC
//
// Module support routines
//
// This program is distributed under the terms of the GPL v2.0 or later
// Download the GNU Public License (GPL) from www.gnu.org
//
// Copyright(C) 2000 Nicholas Christopoulos
#include "common/extlib.h"
#if defined(__cplusplus)
extern "C" {
#endif
typedef char *mod_keyword_t;
int mod_parint(int n, slib_par_t *params, int param_count, int *val);
int mod_opt_parint(int n, slib_par_t *params, int param_count, int *val,
int def_val);
int mod_parstr_ptr(int n, slib_par_t *params, int param_count, char **ptr);
int mod_opt_parstr_ptr(int n, slib_par_t *params, int param_count, char **ptr,
const char *def_val);
#if defined(__cplusplus)
}
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.