Start rewrite

- Rewrite everything
- Starting with up-to-date lockpickrcm
This commit is contained in:
Such Meme, Many Skill
2019-11-21 16:02:45 +01:00
parent e8ddc9cf2f
commit ff062a232b
95 changed files with 7043 additions and 1844 deletions

View File

@@ -14,7 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "types.h"
#include "sprintf.h"
#include <stdarg.h>
@@ -104,8 +104,9 @@ u32 sprintf(char *buffer, const char *fmt, ...) {
goto out;
default:
_putc(buffer + count, '%');
count++;
_putc(buffer + count, *fmt);
count += 2;
count++;
break;
}
} else {