mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-25 04:54:59 +00:00
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
/*
|
|
* 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 <mrbrown@ocgnet.org>
|
|
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
|
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
|
*
|
|
*/
|
|
#ifndef __PSPSTDIO_H__
|
|
#define __PSPSTDIO_H__
|
|
|
|
#include <pspkerneltypes.h>
|
|
|
|
/** @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
|