Click here to Skip to main content
15,884,673 members
Articles / Desktop Programming / MFC

Tiny C Runtime Library

Rate me:
Please Sign up or sign in to vote.
4.86/5 (60 votes)
25 Mar 20079 min read 332K   5.6K   123  
Reduce code bloat for those simple utility programs by using a streamlined C runtime - now with Unicode support!
// puts.cpp

// based on:
// LIBCTINY - Matt Pietrek 2001
// MSDN Magazine, January 2001

// 08/12/06 (mv)

#include <windows.h>
#include <stdio.h>
#include "libct.h"

EXTERN_C int puts(const char *s)
{
    //DWORD cbWritten;
    //HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);

	int bw = fwrite(s, lstrlenA(s), 1, stdout);
	bw += fwrite("\n", 1, 1, stdout);
	return bw;

    //WriteFile(hStdOut, s, lstrlenA(s)*sizeof(char), &cbWritten, 0);
    //WriteFile(hStdOut, "\r\n", 2, &cbWritten, 0);

    //return (int)(cbWritten ? cbWritten : EOF);
}

EXTERN_C int _putws(const wchar_t *s)
{
	//DWORD bw;
	//HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);

	// _putws converts unicode to ascii before writing to stdout!
	char bfr[1024];
	WideCharToMultiByte(CP_ACP, 0, s, -1, bfr, sizeof(bfr), 0, 0);
	return puts(bfr);

	//WriteFile(hStdOut, s, lstrlenW(s)*sizeof(wchar_t), &bw, 0);
	//WriteFile(hStdOut, L"\r\n", 2*sizeof(wchar_t), &bw, 0);

	//return (int)(bw ? bw : EOF);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Mike_V is currently a student at UCLA.

After a few years on the Dark Side, he reformed and now chants "Death to VB." His computer-related interests include C++, C#, and ASP.NET (in C#, of course). He writes operating systems in C++ and assembler as a hobby.

Comments and Discussions