Objective
Implement mini_scanf, a reduced formatted input function that reads from standard input.
Steps
$ standard input: `-17 bridge Z`, call `mini_scanf("%d %s %c", &n, word, &c)`
returns 3, stores -17, `bridge`, and `Z`
$ standard input: `xy z`, call `mini_scanf("%c%c%c", &a, &b, &c)`
returns 3, stores `x`, `y`, then a space
Expected files
Allowed functions

Objective
Implement mini_scanf, a reduced formatted input function that reads from standard input.
Steps
$ standard input: `-17 bridge Z`, call `mini_scanf("%d %s %c", &n, word, &c)`
returns 3, stores -17, `bridge`, and `Z`
$ standard input: `xy z`, call `mini_scanf("%c%c%c", &a, &b, &c)`
returns 3, stores `x`, `y`, then a space
Expected files
Allowed functions

Tests
Run the tests to grade your code