Skip to content

Really lightweight implementation of std::string in plain WinAPI. (may be missing some features)

Notifications You must be signed in to change notification settings

seiftnesse/CString

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

CString

Really lightweight (just header) implementation of std::string in plain WinAPI. (may be missing some features)

How to use

It's... simple?

#include <Windows.h>
#include "CString.hpp"

int main() {
	CString str("katch is the best");
	str.replace("katch", "xWhitey");
	WriteConsoleA(GetStdHandle(STD_OUTPUT_HANDLE), str.c_str(), str.length(), NULL, NULL);
}

About

Really lightweight implementation of std::string in plain WinAPI. (may be missing some features)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages