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
Currently, eli's line is using a char array set to a static size of BUFSIZ
It would be a cool to change that to a char pointer that is allocated to the actual size of its line (plus maybe some default), and is resized dynamically as the line grows in length.
The text was updated successfully, but these errors were encountered:
Currently, eli's line is using a char array set to a static size of
BUFSIZ
It would be a cool to change that to a char pointer that is allocated to the actual size of its line (plus maybe some default), and is resized dynamically as the line grows in length.
The text was updated successfully, but these errors were encountered: