Kernel 0.93+

This commit is contained in:
Rémy GIBERT 2020-01-15 08:10:24 +01:00
parent f7bfa20a97
commit b11b0f94fb
2 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@ -360,10 +360,11 @@ K.SetEnv.I jsr K.UnsetEnv.I
* searches the environment list to find the environment variable name,
* and returns a pointer to the corresponding value string.
* ## C
* `char *getenv(const char *name);`
* `char *getenv(const char *name, char *value);`
* ## ASM
* **In:**
* `>LDYA name`
* `>PUSHW name`
* `>PUSHW value`
* `>SYSCALL getenv`
* ## RETURN VALUE
* CC : Y,A = PTR to VALUE (C-String)