This commit is contained in:
hyung-hwan 2008-08-23 01:06:35 +00:00
parent 713586d04a
commit b51b4bd524
6 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
pkginclude_HEADERS = mem.h chr.h str.h map.h rex.h sll.h dll.h pkginclude_HEADERS = mem.h chr.h str.h map.h rex.h sll.h dll.h opt.h
pkgincludedir= $(includedir)/ase/cmn pkgincludedir= $(includedir)/ase/cmn

View File

@ -4,8 +4,8 @@
* {License} * {License}
*/ */
#ifndef _ASE_UTL_GETOPT_H_ #ifndef _ASE_CMN_OPT_H_
#define _ASE_UTL_GETOPT_H_ #define _ASE_CMN_OPT_H_
#include <ase/types.h> #include <ase/types.h>
#include <ase/macros.h> #include <ase/macros.h>
@ -44,12 +44,12 @@ extern "C" {
#endif #endif
/* /*
* NAME Parse command line options * NAME: parse command line options
* *
* DESCRIPTION * DESCRIPTION:
* TODO: * TODO:
* *
* RETURNS ASE_CHAR_EOF, XXXX.XXXX * RETURNS: ASE_CHAR_EOF, XXXX.XXXX
*/ */
ase_cint_t ase_getopt ( ase_cint_t ase_getopt (
int argc /* argument count */, int argc /* argument count */,

View File

@ -30,7 +30,6 @@
#elif defined(ASE_CHAR_IS_WCHAR) #elif defined(ASE_CHAR_IS_WCHAR)
#include <ctype.h>
#include <wctype.h> #include <wctype.h>
#define ASE_ISUPPER(c) iswupper(c) #define ASE_ISUPPER(c) iswupper(c)
#define ASE_ISLOWER(c) iswlower(c) #define ASE_ISLOWER(c) iswlower(c)

View File

@ -4,6 +4,7 @@ AM_CFLAGS = -I$(top_builddir)/include
lib_LTLIBRARIES = libasecmn.la lib_LTLIBRARIES = libasecmn.la
libasecmn_la_SOURCES = mem.h chr.h \ libasecmn_la_SOURCES = mem.h chr.h \
mem.c chr.c map.c misc.c rex.c str_bas.c str_cnv.c str_dyn.c sll.c dll.c mem.c chr.c map.c misc.c rex.c str_bas.c str_cnv.c str_dyn.c \
sll.c dll.c opt.c
libasecmn_la_LDFLAGS = -version-info 1:0:0 libasecmn_la_LDFLAGS = -version-info 1:0:0

View File

@ -4,7 +4,7 @@
* {License} * {License}
*/ */
#include <ase/utl/getopt.h> #include <ase/cmn/opt.h>
#include <ase/cmn/str.h> #include <ase/cmn/str.h>
/* /*

View File

@ -2,5 +2,5 @@
AM_CFLAGS = -I$(top_builddir)/include AM_CFLAGS = -I$(top_builddir)/include
lib_LTLIBRARIES = libaseutl.la lib_LTLIBRARIES = libaseutl.la
libaseutl_la_SOURCES = assert.c getopt.c http.c main.c stdio.c libaseutl_la_SOURCES = assert.c http.c main.c stdio.c
libaseutl_la_LDFLAGS = -version-info 1:0:0 libaseutl_la_LDFLAGS = -version-info 1:0:0