Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 410 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 410 Bytes

sscanf

Assembler realization of C sscanf function
http://www.cplusplus.com/reference/cstdio/sscanf/

#####Signature:
int sscanf_asm(const char * from, const char * format[, list of destinations])

#####Available formats:

  • %i - integer positive/negative number
  • %x - integer hex number
  • %s - string

#####Example:
Look in test.c file

#####Dependencies yasm: http://yasm.tortall.net/