mescc: Mes C Library: Support diffutils: Add execl.
* include/limits.h (CHAR_MAX): New macro. * lib/posix/execl.c: New file. * include/unistd.h: Declare it.
This commit is contained in:
parent
fa4ba916ea
commit
543ae4df32
|
@ -31,6 +31,7 @@
|
||||||
|
|
||||||
#define CHAR_BIT 8
|
#define CHAR_BIT 8
|
||||||
#define UCHAR_MAX 255
|
#define UCHAR_MAX 255
|
||||||
|
#define CHAR_MAX 255
|
||||||
#define UINT_MAX 4294967295U
|
#define UINT_MAX 4294967295U
|
||||||
#define INT_MIN -2147483648
|
#define INT_MIN -2147483648
|
||||||
#define INT_MAX 2147483647
|
#define INT_MAX 2147483647
|
||||||
|
|
|
@ -57,6 +57,7 @@ int access (char const *s, int mode);
|
||||||
unsigned int alarm (unsigned int seconds);
|
unsigned int alarm (unsigned int seconds);
|
||||||
int close (int fd);
|
int close (int fd);
|
||||||
int execv (char const *file_name, char *const argv[]);
|
int execv (char const *file_name, char *const argv[]);
|
||||||
|
int execl (char const *file_name, char const *arg, ...);
|
||||||
int execve (char const *file, char *const argv[], char *const env[]);
|
int execve (char const *file, char *const argv[], char *const env[]);
|
||||||
int execvp (char const *file, char *const argv[]);
|
int execvp (char const *file, char *const argv[]);
|
||||||
int fork (void);
|
int fork (void);
|
||||||
|
|
|
@ -103,3 +103,5 @@
|
||||||
#include <dirent/closedir.c>
|
#include <dirent/closedir.c>
|
||||||
#include <dirent/opendir.c>
|
#include <dirent/opendir.c>
|
||||||
#include <dirent/readdir.c>
|
#include <dirent/readdir.c>
|
||||||
|
|
||||||
|
#include <posix/execl.c>
|
||||||
|
|
52
lib/posix/execl.c
Normal file
52
lib/posix/execl.c
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
/* -*-comment-start: "//";comment-end:""-*-
|
||||||
|
* GNU Mes --- Maxwell Equations of Software
|
||||||
|
* Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
|
*
|
||||||
|
* This file is part of GNU Mes.
|
||||||
|
*
|
||||||
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 3 of the License, or (at
|
||||||
|
* your option) any later version.
|
||||||
|
*
|
||||||
|
* GNU Mes is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <libmes.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
execl (char const *file_name, char const *arg, ...)
|
||||||
|
{
|
||||||
|
if (__mes_debug () > 2)
|
||||||
|
{
|
||||||
|
eputs ("execl "); eputs (file_name); eputs ("\n");
|
||||||
|
}
|
||||||
|
char *argv[1000]; // POSIX minimum 4096
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
va_list ap;
|
||||||
|
va_start (ap, arg);
|
||||||
|
|
||||||
|
argv[i++] = file_name;
|
||||||
|
arg = va_arg (ap, char const *);
|
||||||
|
while (arg)
|
||||||
|
{
|
||||||
|
argv[i++] = arg;
|
||||||
|
arg = va_arg (ap, char const *);
|
||||||
|
if (__mes_debug () > 2)
|
||||||
|
{
|
||||||
|
eputs ("arg["); eputs (itoa (i)); eputs ("]: "); eputs (argv[i-1]); eputs ("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
argv[i] = 0;
|
||||||
|
int r = execv (file_name, argv);
|
||||||
|
va_end (ap);
|
||||||
|
return r;
|
||||||
|
}
|
Loading…
Reference in a new issue