No description
  • C 98.6%
  • Makefile 1.4%
Find a file
Stefan 'psYchotic' Zwanenburg c4ba2bde70 Changed every call to sscanf to include the %n directive.
This is useful mostly for scanning numeric values, as a trailing
non-numeric character is ignored by *scanf's. So what needs to be done
is:
sscanf(string, "%d%n", &someint, &read_chars) && read_chars == strlen(string).
2010-02-03 19:25:39 +01:00
builtins.h New '.' builtin, and 'exit' builtin changed: 2010-01-30 13:44:36 +01:00
Doxyfile Fixed some documentation and added a 'doc' make target. 2010-01-30 15:21:33 +01:00
Makefile Added actual commenting support. 2010-01-31 01:21:57 +01:00
mystring.c Stopped using readline for sourcing. 2010-01-30 14:51:56 +01:00
mystring.h Stopped using readline for sourcing. 2010-01-30 14:51:56 +01:00
ss.c Changed every call to sscanf to include the %n directive. 2010-02-03 19:25:39 +01:00