Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/modules/Libc/stdio/puts.c

  • Property svn:executable set to *
1/**
2 * @file
3 * @brief Implements puts function.
4 *
5 * @date 14.02.10
6 * @author Eldar Abusalimov
7 */
8
9#include <stdio.h>
10
11
12void puts(const char *s) {
13char *ptr = (char*) s;
14while (*ptr) {
15putchar(*ptr++);
16}
17putchar('\n');
18}
19

Archive Download this file

Revision: 2182