Header file for vsh, a bourne-compatible shell. More...
#include <maloc/maloc_base.h>#include <maloc/vsys.h>

Go to the source code of this file.
Data Structures | |
| struct | Vsh |
| Class Vsh: Definition. More... | |
Typedefs | |
| typedef struct Vsh | Vsh |
| Class Vsh: Definition. | |
Functions | |
| VEXTERNC Vsh * | Vsh_ctor (Vmem *vmem, int argc, char **argv) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC void | Vsh_dtor (Vsh **thee) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC int | Vsh_shell (Vsh *thee, char *pPR, void *pthee, int(*builtin)(void *thee, int argc, char **argv)) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC int | Vsh_putenv (Vsh *thee, const char *envi, const char *valu) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC int | Vsh_putenvInfo (Vsh *thee, const char *envi, const char *valu) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC int | Vsh_putenvInt (Vsh *thee, const char *envi, const int valu) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC int | Vsh_putenvReal (Vsh *thee, const char *envi, const double valu) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC char * | Vsh_getenv (Vsh *thee, const char *envi) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC char * | Vsh_getenvInfo (Vsh *thee, const char *envi) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC int | Vsh_getenvInt (Vsh *thee, const char *envi) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC double | Vsh_getenvReal (Vsh *thee, const char *envi) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC void | Vsh_remove (Vsh *thee, const char *envi) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC void | Vsh_wipe (Vsh *thee) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC void | Vsh_memChk (Vsh *thee) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC Vio * | Vsh_ioSetup (Vsh *thee, char *key) |
| Class Vsh: Non-inlineable method (vsh.c) | |
| VEXTERNC void | Vsh_ioCleanup (Vsh *thee, Vio **sock) |
| Class Vsh: Non-inlineable method (vsh.c) | |
Header file for vsh, a bourne-compatible shell.
* * * MALOC = < Minimal Abstraction Layer for Object-oriented C > * Copyright (C) 1994--2008 Michael Holst * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *
Definition in file vsh.h.
1.7.2