char ** SDL_GetEnvironmentVariables(SDL_Environment *env);
| SDL_Environment * | env | 問い合わせる環境変数セット |
(char **) Returns a NULL terminated array of pointers to environment variables in the form "variable=value" or NULL on failure; call SDL_GetError() for more information. This is a single allocation that should be freed with SDL_free() when it is no longer needed. "variable=value"形式の環境変数のNULL終端の配列を戻す. 失敗のときNULLを戻す. SDL_GetError()を呼んで詳細を知ることができる. これは不要になったときSDL_free()で解放する必要がある.
この関数はどのスレッドからも安全に呼べる.