Subversion Repositories HelenOS-historic

Rev

Rev 1465 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1465 Rev 1653
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup libc
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __LIBC__IO_H__
35
#ifndef __LIBC__IO_H__
30
#define __LIBC__IO_H__
36
#define __LIBC__IO_H__
31
 
37
 
32
#include <libarch/types.h>
38
#include <libarch/types.h>
33
 
39
 
Line 35... Line 41...
35
int putstr(const char * str);
41
int putstr(const char * str);
36
int putchar(int c);
42
int putchar(int c);
37
int getchar(void);
43
int getchar(void);
38
 
44
 
39
#endif
45
#endif
-
 
46
 
-
 
47
 
-
 
48
 /** @}
-
 
49
 */
-
 
50
 
-
 
51