/* * PSP Software Development Kit - https://github.com/pspdev * ----------------------------------------------------------------------- * Licensed under the BSD license, see LICENSE in PSPSDK root for details. * * pspstdio.h - Prototypes for the sceStdio library. * * Copyright (c) 2005 Marcus R. Brown * Copyright (c) 2005 James Forshaw * Copyright (c) 2005 John Kelley * */ #ifndef __PSPSTDIO_H__ #define __PSPSTDIO_H__ #include /** @defgroup Stdio Stdio Library * This module contains the imports for the kernel's stdio routines. */ #ifdef __cplusplus extern "C" { #endif /** @addtogroup Stdio Stdio Library */ /**@{*/ /** * Function to get the current standard in file no * * @return The stdin fileno */ SceUID sceKernelStdin(void); /** * Function to get the current standard out file no * * @return The stdout fileno */ SceUID sceKernelStdout(void); /** * Function to get the current standard err file no * * @return The stderr fileno */ SceUID sceKernelStderr(void); /**@}*/ #ifdef __cplusplus } #endif #endif