Add a missing prototype

Former-commit-id: 6c5b476f30adba6e0eb41e11e152124090c3f04e
This commit is contained in:
2023-08-27 15:51:23 +02:00
parent 9bf006af93
commit f1025f97b8
2 changed files with 3 additions and 3 deletions

View File

@ -251,8 +251,7 @@ void CursiToTop(StackiPtr stki)
} /* end of CursiToTop */
void CursiToBottom(stki)
StackiPtr stki;
void CursiToBottom(StackiPtr stki)
{
stki->cursor = 0;

View File

@ -76,6 +76,7 @@ bool SearchDownStacki (StackiPtr stki , int32_t sval );
bool BinSearchStacki (StackiPtr stki , int32_t sval );
bool SameStacki (StackiPtr stki1 , StackiPtr stki2 );
bool ReverseStacki (StackiPtr stki );
bool EmptyStacki (StackiPtr stki );
bool EmptyStacki (StackiPtr stki );
void CursiToBottom (StackiPtr stki );
#endif /* _H_libstki */