|
|
|
|
|
by flohofwoe
141 days ago
|
|
It's not the "string library" that's important, but standardized interface types - so that different libraries can pass strings to each other while still being able to select the best string library that matches the project's requirements. In C this standardized string interface type happens to the poiinter to a zero-terminated bag of bytes, not exactly perfect in hindsight, but as long as everybody agrees to that standard, the actual code working on strings can be replaced with another implementation just fine. E.g. a minimal stdlib should mostly be concerned about standardized interface types, not about the implementation behind those types. |
|
This.. does not seem like a very good idea if you want your contributions to be received well.