makeopensource / mOS

MakeOpenSource Operating System
GNU General Public License v3.0
4 stars 8 forks source link

String Functions #11

Closed Sploder12 closed 1 year ago

Sploder12 commented 1 year ago

Currently we have no way to print numerics anywhere. This makes visual logging or debugging difficult. We also can't convert strings into numerics which might be annoying later.

The must-haves are:

snprintf is preferred since we dont have the streams for printf or fprintf to write to. Other C standard string functions (like strcpy_s) would be useful but aren't must-have worthy. Keep in mind that we don't have dynamic allocation so we have to use statically sized strings.