-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some more changes, added some readme stuff etc.
- Loading branch information
JayLCypher
committed
Nov 15, 2023
1 parent
207200f
commit ffa7f61
Showing
9 changed files
with
120 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
# jclibc | ||
# jclibc - Opinionated C STL | ||
|
||
Just a re-implementation of some C standard library functions for fun. Bits and bobs written or found from places, comments will denote from where if applicable. | ||
No license yet. | ||
|
||
## I swear I'm right | ||
Because if I'm not right, I'm wrong. And I don't like that. | ||
|
||
|
||
|
||
|
||
## Components | ||
|
||
* String_View (Which is just a fat pointer, sue me.) | ||
* Argc and Argv stack manipulation | ||
* C String manipulation | ||
* Memory block manipulation | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// LINT_C_FILE | ||
#pragma once | ||
#ifndef _JCMEMC_H_ | ||
#define _JCMEMC_H_ | ||
|
||
const void *mem_chr(const void *const, const char, const size_t); | ||
const void *mem_rchr(const void *const, const char, const size_t); | ||
const void *mem_rchrr(const void *const, const void *const, const char); | ||
const void *mem_rawchr(const void *const, const char); | ||
|
||
#endif /* end of include guard: _JCMEMC_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters