Click here to Skip to main content
15,894,825 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 333.9K   5.7K   123  
Reduce code bloat for those simple utility programs by using a streamlined C runtime - now with Unicode support!
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hd", "hd.vcproj", "{340966A2-A0AD-4E81-9E82-D2D92359ACE9}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tlibc", "tlibc\tlibc.vcproj", "{4E15033F-45F2-4765-926E-E86660EF6C85}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
		Unicode Debug|Win32 = Unicode Debug|Win32
		Unicode Release|Win32 = Unicode Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Debug|Win32.ActiveCfg = Debug|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Debug|Win32.Build.0 = Debug|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Release|Win32.ActiveCfg = Release|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Release|Win32.Build.0 = Release|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Unicode Debug|Win32.ActiveCfg = Unicode Debug|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Unicode Debug|Win32.Build.0 = Unicode Debug|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Unicode Release|Win32.ActiveCfg = Unicode Release|Win32
		{340966A2-A0AD-4E81-9E82-D2D92359ACE9}.Unicode Release|Win32.Build.0 = Unicode Release|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Debug|Win32.ActiveCfg = Debug|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Debug|Win32.Build.0 = Debug|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Release|Win32.ActiveCfg = Release|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Release|Win32.Build.0 = Release|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Unicode Debug|Win32.ActiveCfg = Unicode Debug|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Unicode Debug|Win32.Build.0 = Unicode Debug|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Unicode Release|Win32.ActiveCfg = Unicode Release|Win32
		{4E15033F-45F2-4765-926E-E86660EF6C85}.Unicode Release|Win32.Build.0 = Unicode Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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