*** empty log message ***

This commit is contained in:
hyung-hwan 2006-12-17 12:33:31 +00:00
parent 6c62c3afcd
commit 3cdf213bb7
3 changed files with 85 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.139 2006-12-16 16:12:07 bacon Exp $
* $Id: awk.c,v 1.140 2006-12-17 12:33:31 bacon Exp $
*/
#include <ase/awk/awk.h>
@ -1111,7 +1111,7 @@ int xp_main (int argc, ase_char_t* argv[])
}
#endif
#if defined(__unix) || defined(__unix__)
#if defined(__unix)
xp_setlocale ();
#endif

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h,v 1.62 2006-12-17 10:33:41 bacon Exp $
* $Id: types.h,v 1.63 2006-12-17 12:33:31 bacon Exp $
*/
#ifndef _ASE_TYPES_H_
@ -11,7 +11,7 @@
#include <ase/conf_vms.h>
#elif defined(__MSDOS__) || defined(_MSDOS) || defined(MSDOS)
#include <ase/conf_dos.h>
#elif defined(__unix__) || defined(__unix) || defined(__NetBSD__)
#elif defined(__unix__) || defined(__unix) || defined(__NetBSD__) || defined(__OpenBSD__)
#if !defined(__unix__)
#define __unix__
#endif

81
ase/utl/main.c Normal file
View File

@ -0,0 +1,81 @@
/*
* $Id: main.c,v 1.1 2006-12-17 12:33:31 bacon Exp $
*/
#include <ase/types.h>
#include <ase/macros.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <locale.h>
#if defined(ASE_CHAR_IS_WCHAR) && defined(__unix)
int main (int argc, char* argv[]/*, char** envp*/)
{
int i, ret;
ase_char_t** v;
setlocale (LC_ALL, "");
v = (ase_char_t**) malloc (argc * ASE_SIZEOF(ase_char_t*));
if (v == NULL) return -1;
for (i = 0; i < argc; i++) v[i] = NULL;
for (i = 0; i < argc; i++)
{
ase_size_t n, len, rem;
char* p = argv[i];
len = 0; rem = strlen (p);
while (*p != '\0')
{
int x = mblen (p, rem);
if (x == -1)
{
ret = -1;
goto exit_main;
}
if (x == 0) break;
p += x; rem -= x; len++;
}
v[i] = (ase_char_t*) malloc (
(len + 1) * ASE_SIZEOF(ase_char_t));
if (v[i] == NULL)
{
ret = -1;
goto exit_main;
}
n = mbstowcs (v[i], argv[i], len);
if (n == (size_t)-1)
{
/* error */
return -1;
}
if (n == len) v[i][len] = ASE_T('\0');
}
for (i = 0; i < argc; i++)
{
printf ("[%ls]\n", v[i]);
}
/* TODO: envp... */
//ret = _tmain (argc, v, NULL);
exit_main:
for (i = 0; i < argc; i++)
{
if (v[i] != NULL) free (v[i]);
}
free (v);
return ret;
}
#endif