You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./state-test.c: In function ‘test_update_cursor’:
./state-test.c:15:3: warning: implicit declaration of function ‘update_cursor_position’ [-Wimplicit-function-declaration]
update_cursor_position(st);
^~~~~~~~~~~~~~~~~~~~~~
./state-test.c: In function ‘test_update_display’:
./state-test.c:29:3: warning: implicit declaration of function ‘update_display’; did you mean ‘test_update_display’? [-Wimplicit-function-declaration]
update_display(st);
^~~~~~~~~~~~~~
test_update_display
I found a function called update_state in state.h that might be the update_display you refer to in the test. For the second error, update_display is in state.c but I don't how it can be made visible by including just state.h in the test.
The text was updated successfully, but these errors were encountered:
I found a function called
update_state
instate.h
that might be theupdate_display
you refer to in the test. For the second error,update_display
is instate.c
but I don't how it can be made visible by including juststate.h
in the test.The text was updated successfully, but these errors were encountered: