SamyPesse / How-to-Make-a-Computer-Operating-System

How to Make a Computer Operating System in C++
https://samypesse.gitbook.io/how-to-create-an-operating-system
Apache License 2.0
21.46k stars 3.43k forks source link

Changing 'printf' to 'print' #93

Open pangteypiyush opened 9 years ago

pangteypiyush commented 9 years ago

Function name "printf() " was never implemented . Implemented function is "print()" which works like "pintf()" found in standard c.

gbonnema commented 9 years ago

Wouldn't it make sense to rename the implemented function to printf? That would be more unix compatible. My guess is that implementing 'print' in stead of 'printf' was a mistake, while the text indicates the intention was to create 'printf'.

pangteypiyush commented 9 years ago

the text indicates the intention was to create "a function 'print' which works like 'printf' found on standard C ".