This commit is contained in:
parent
720a7914d7
commit
d98a683a57
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: str.h 140 2008-03-18 04:08:36Z baconevi $
|
* $Id: str.h 142 2008-03-18 06:29:25Z baconevi $
|
||||||
*
|
*
|
||||||
* {License}
|
* {License}
|
||||||
*/
|
*/
|
||||||
@ -81,6 +81,9 @@ struct ase_str_t
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* basic string functions
|
||||||
|
*/
|
||||||
ase_size_t ase_strlen (const ase_char_t* str);
|
ase_size_t ase_strlen (const ase_char_t* str);
|
||||||
|
|
||||||
ase_size_t ase_strcpy (
|
ase_size_t ase_strcpy (
|
||||||
@ -126,11 +129,35 @@ ase_char_t* ase_strxchr (const ase_char_t* str, ase_size_t len, ase_cint_t c);
|
|||||||
ase_char_t* ase_strrchr (const ase_char_t* str, ase_cint_t c);
|
ase_char_t* ase_strrchr (const ase_char_t* str, ase_cint_t c);
|
||||||
ase_char_t* ase_strxrchr (const ase_char_t* str, ase_size_t len, ase_cint_t c);
|
ase_char_t* ase_strxrchr (const ase_char_t* str, ase_size_t len, ase_cint_t c);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* string conversion
|
||||||
|
*/
|
||||||
|
int ase_strtoi (const ase_char_t* str);
|
||||||
|
long ase_strtol (const ase_char_t* str);
|
||||||
|
unsigned int ase_strtoui (const ase_char_t* str);
|
||||||
|
unsigned long ase_strtoul (const ase_char_t* str);
|
||||||
|
|
||||||
|
int ase_strxtoi (const ase_char_t* str, ase_size_t len);
|
||||||
|
long ase_strxtol (const ase_char_t* str, ase_size_t len);
|
||||||
|
unsigned int ase_strxtoui (const ase_char_t* str, ase_size_t len);
|
||||||
|
unsigned long ase_strxtoul (const ase_char_t* str, ase_size_t len);
|
||||||
|
|
||||||
ase_int_t ase_strtoint (const ase_char_t* str);
|
ase_int_t ase_strtoint (const ase_char_t* str);
|
||||||
ase_long_t ase_strtolong (const ase_char_t* str);
|
ase_long_t ase_strtolong (const ase_char_t* str);
|
||||||
ase_uint_t ase_strtouint (const ase_char_t* str);
|
ase_uint_t ase_strtouint (const ase_char_t* str);
|
||||||
ase_ulong_t ase_strtoulong (const ase_char_t* str);
|
ase_ulong_t ase_strtoulong (const ase_char_t* str);
|
||||||
|
|
||||||
|
ase_int_t ase_strxtoint (const ase_char_t* str, ase_size_t len);
|
||||||
|
ase_long_t ase_strxtolong (const ase_char_t* str, ase_size_t len);
|
||||||
|
ase_uint_t ase_strxtouint (const ase_char_t* str, ase_size_t len);
|
||||||
|
ase_ulong_t ase_strxtoulong (const ase_char_t* str, ase_size_t len);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* dynamic string
|
||||||
|
*/
|
||||||
|
|
||||||
ase_str_t* ase_str_open (ase_str_t* str, ase_size_t capa, ase_mmgr_t* mmgr);
|
ase_str_t* ase_str_open (ase_str_t* str, ase_size_t capa, ase_mmgr_t* mmgr);
|
||||||
void ase_str_close (ase_str_t* str);
|
void ase_str_close (ase_str_t* str);
|
||||||
void ase_str_clear (ase_str_t* str);
|
void ase_str_clear (ase_str_t* str);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: str_cnv.c 141 2008-03-18 04:09:04Z baconevi $
|
* $Id: str_cnv.c 142 2008-03-18 06:29:25Z baconevi $
|
||||||
*
|
*
|
||||||
* {License}
|
* {License}
|
||||||
*/
|
*/
|
||||||
@ -7,30 +7,114 @@
|
|||||||
#include <ase/cmn/str.h>
|
#include <ase/cmn/str.h>
|
||||||
#include <ase/cmn/mem.h>
|
#include <ase/cmn/mem.h>
|
||||||
|
|
||||||
|
int ase_strtoi (const ase_char_t* str)
|
||||||
|
{
|
||||||
|
int v;
|
||||||
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
long ase_strtol (const ase_char_t* str)
|
||||||
|
{
|
||||||
|
long v;
|
||||||
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int ase_strtoui (const ase_char_t* str)
|
||||||
|
{
|
||||||
|
unsigned int v;
|
||||||
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long ase_strtoul (const ase_char_t* str)
|
||||||
|
{
|
||||||
|
unsigned long v;
|
||||||
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
int ase_strxtoi (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
int v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
long ase_strxtol (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
long v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int ase_strxtoui (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
unsigned int v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long ase_strxtoul (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
unsigned long v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
ase_int_t ase_strtoint (const ase_char_t* str)
|
ase_int_t ase_strtoint (const ase_char_t* str)
|
||||||
{
|
{
|
||||||
ase_int_t v;
|
ase_int_t v;
|
||||||
ASE_STRTOI (v, str, ASE_NULL, 10);
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
ase_long_t ase_strtolong (const ase_char_t* str)
|
ase_long_t ase_strtolong (const ase_char_t* str)
|
||||||
{
|
{
|
||||||
ase_long_t v;
|
ase_long_t v;
|
||||||
ASE_STRTOI (v, str, ASE_NULL, 10);
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
ase_uint_t ase_strtouint (const ase_char_t* str)
|
ase_uint_t ase_strtouint (const ase_char_t* str)
|
||||||
{
|
{
|
||||||
ase_uint_t v;
|
ase_uint_t v;
|
||||||
ASE_STRTOI (v, str, ASE_NULL, 10);
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
ase_ulong_t ase_strtoulong (const ase_char_t* str)
|
ase_ulong_t ase_strtoulong (const ase_char_t* str)
|
||||||
{
|
{
|
||||||
ase_ulong_t v;
|
ase_ulong_t v;
|
||||||
ASE_STRTOI (v, str, ASE_NULL, 10);
|
ASE_STRTONUM (v, str, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
ase_int_t ase_strxtoint (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
ase_int_t v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
ase_long_t ase_strxtolong (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
ase_long_t v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
ase_uint_t ase_strxtouint (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
ase_uint_t v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
ase_ulong_t ase_strxtoulong (const ase_char_t* str, ase_size_t len)
|
||||||
|
{
|
||||||
|
ase_ulong_t v;
|
||||||
|
ASE_STRXTONUM (v, str, len, ASE_NULL, 10);
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <ase/utl/stdio.h>
|
#include <ase/utl/stdio.h>
|
||||||
#include <ase/utl/main.h>
|
#include <ase/utl/main.h>
|
||||||
#include <ase/utl/getopt.h>
|
#include <ase/utl/getopt.h>
|
||||||
|
#include <ase/utl/stdlib.h>
|
||||||
#include <ase/cmn/mem.h>
|
#include <ase/cmn/mem.h>
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -283,11 +284,24 @@ static int handle_args (int argc, ase_char_t* argv[])
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ASE_T('?'):
|
case ASE_T('?'):
|
||||||
|
ase_fprintf (ASE_STDERR, ASE_T("Error: illegal option - %c\n"), opt.opt);
|
||||||
|
print_usage (argv[0]);
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
case ASE_T(':'):
|
||||||
|
ase_fprintf (ASE_STDERR, ASE_T("Error: missing argument for %c\n"), opt.opt);
|
||||||
print_usage (argv[0]);
|
print_usage (argv[0]);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (opt.ind < argc)
|
||||||
|
{
|
||||||
|
ase_printf (ASE_T("Error: redundant argument - %s\n"), argv[opt.ind]);
|
||||||
|
print_usage (argv[0]);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (opt_memsize <= 0)
|
if (opt_memsize <= 0)
|
||||||
{
|
{
|
||||||
ase_printf (ASE_T("Error: invalid memory size given\n"));
|
ase_printf (ASE_T("Error: invalid memory size given\n"));
|
||||||
@ -305,7 +319,6 @@ int lsp_main (int argc, ase_char_t* argv[])
|
|||||||
prmfns_data_t prmfns_data;
|
prmfns_data_t prmfns_data;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
if (handle_args (argc, argv) == -1) return -1;
|
if (handle_args (argc, argv) == -1) return -1;
|
||||||
|
|
||||||
ase_memset (&prmfns, 0, ASE_SIZEOF(prmfns));
|
ase_memset (&prmfns, 0, ASE_SIZEOF(prmfns));
|
||||||
|
@ -12,7 +12,7 @@ OUT_DIR = ../../$(MODE)/bin
|
|||||||
|
|
||||||
all: $(OUT_DIR)/aselsp
|
all: $(OUT_DIR)/aselsp
|
||||||
|
|
||||||
$(OUT_DIR)/aselsp: $(OUT_DIR)
|
$(OUT_DIR)/aselsp: $(OUT_DIR) lsp.c
|
||||||
$(CC) $(CFLAGS) -o $@ lsp.c $(LDFLAGS) $(LIBS)
|
$(CC) $(CFLAGS) -o $@ lsp.c $(LDFLAGS) $(LIBS)
|
||||||
|
|
||||||
$(OUT_DIR):
|
$(OUT_DIR):
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: getopt.c 138 2008-03-17 13:57:46Z baconevi $
|
* $Id: getopt.c 142 2008-03-18 06:29:25Z baconevi $
|
||||||
*
|
*
|
||||||
* {License}
|
* {License}
|
||||||
*/
|
*/
|
||||||
@ -40,19 +40,6 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* declarations to provide consistent linkage */
|
|
||||||
extern char *optarg;
|
|
||||||
extern int optind;
|
|
||||||
extern int opterr;
|
|
||||||
|
|
||||||
int opterr = 1, /* if error message should be printed */
|
|
||||||
optind = 1, /* index into parent argv vector */
|
|
||||||
optopt, /* character checked for validity */
|
|
||||||
optreset; /* reset getopt */
|
|
||||||
char *optarg; /* argument associated with option */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define BADCH ASE_T('?')
|
#define BADCH ASE_T('?')
|
||||||
#define BADARG ASE_T(':')
|
#define BADARG ASE_T(':')
|
||||||
#define EMSG ASE_T("")
|
#define EMSG ASE_T("")
|
||||||
@ -67,7 +54,11 @@ ase_cint_t ase_getopt (int argc, ase_char_t* const* argv, ase_opt_t* opt)
|
|||||||
{
|
{
|
||||||
ase_char_t* oli; /* option letter list index */
|
ase_char_t* oli; /* option letter list index */
|
||||||
|
|
||||||
if (place == ASE_NULL) place = EMSG;
|
if (place == ASE_NULL)
|
||||||
|
{
|
||||||
|
place = EMSG;
|
||||||
|
optind = 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (*place == ASE_T('\0'))
|
if (*place == ASE_T('\0'))
|
||||||
{
|
{
|
||||||
@ -96,11 +87,6 @@ ase_cint_t ase_getopt (int argc, ase_char_t* const* argv, ase_opt_t* opt)
|
|||||||
*/
|
*/
|
||||||
if (optopt == (int)'-') return ASE_CHAR_EOF;
|
if (optopt == (int)'-') return ASE_CHAR_EOF;
|
||||||
if (*place == ASE_T('\0')) ++optind;
|
if (*place == ASE_T('\0')) ++optind;
|
||||||
#if 0
|
|
||||||
if (opterr && *optstr != ASE_T(':'))
|
|
||||||
(void)fprintf(stderr,
|
|
||||||
"%s: illegal option -- %c\n", __FILE__, optopt);
|
|
||||||
#endif
|
|
||||||
return BADCH;
|
return BADCH;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,25 +100,24 @@ ase_cint_t ase_getopt (int argc, ase_char_t* const* argv, ase_opt_t* opt)
|
|||||||
{
|
{
|
||||||
/* need an argument */
|
/* need an argument */
|
||||||
|
|
||||||
if (*place != ASE_T('\0')) optarg = place; /* no white space */
|
if (*place != ASE_T('\0'))
|
||||||
|
{
|
||||||
|
/* no white space */
|
||||||
|
optarg = place;
|
||||||
|
}
|
||||||
else if (argc <= ++optind)
|
else if (argc <= ++optind)
|
||||||
{
|
{
|
||||||
/* no arg */
|
/* no arg */
|
||||||
place = EMSG;
|
place = EMSG;
|
||||||
if (*optstr == ASE_T(':')) return BADARG;
|
/*if (*optstr == ASE_T(':'))*/ return BADARG;
|
||||||
#if 0
|
/*return BADCH;*/
|
||||||
if (opterr)
|
|
||||||
(void)fprintf(stderr,
|
|
||||||
"%s: option requires an argument -- %c\n",
|
|
||||||
__FILE__, optopt);
|
|
||||||
#endif
|
|
||||||
return BADCH;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* white space */
|
/* white space */
|
||||||
optarg = argv[optind];
|
optarg = argv[optind];
|
||||||
}
|
}
|
||||||
|
|
||||||
place = EMSG;
|
place = EMSG;
|
||||||
++optind;
|
++optind;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user