Implement fprintf

Issue #50 new
Patryk Kubiak created an issue

The function fprintf should be implemented according to the POSIX standard: http://www.cplusplus.com/reference/cstdio/fprintf/

Implementation can be done similary to the printf (stdio.c) function, it should use functions:

oC_ErrorCode_t       oC_VirtualFileSystem_fwrite        ( oC_File_t File , void * Buffer , uint32_t * Size );
oC_ErrorCode_t   oC_KPrint_VPrintf           ( char * outBuffer , oC_UInt_t Size , oC_IoFlags_t IoFlags , const char * Format , va_list ArgumentList );

Comments (1)

  1. Log in to comment