diff --git a/_parts/part3.md b/_parts/part3.md index 86033ae..05d9fb2 100644 --- a/_parts/part3.md +++ b/_parts/part3.md @@ -247,6 +247,14 @@ Now would be a great time to write some tests, for a couple reasons: We'll address those issues in the next part. For now, here's the complete diff from this part: ```diff +#include +#include +#include +#include ++#include + + struct InputBuffer_t { + typedef struct InputBuffer_t InputBuffer; +enum ExecuteResult_t { EXECUTE_SUCCESS, EXECUTE_TABLE_FULL }; @@ -426,4 +434,4 @@ We'll address those issues in the next part. For now, here's the complete diff f + } } } -``` \ No newline at end of file +```