# Copyright (c) 2023 Yuki Kimoto
# MIT License

class Sys::Env {
  version_from Sys;
  
  native static method getenv : string ($name : string);
  
  native static method setenv : int ($name : string, $value : string, $overwrite : int);
  
  native static method unsetenv : int ($name : string);
  
  native static method _putenv_s : int ($name : string, $value : string);
}