Skip to content
Snippets Groups Projects
Commit bf52f833 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Make the readtext() prototype actually match the declaration in sbbs.h

This is hacky cruft here. We shouldn't have the declaration in multiple
places. It probably shouldn't be in sbbs.h.
parent c15b7a2f
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ int lprintf(int level, const char *fmt, ...); /* log output */ ...@@ -28,7 +28,7 @@ int lprintf(int level, const char *fmt, ...); /* log output */
/* Reads special TEXT.DAT printf style text lines, splicing multiple lines, */ /* Reads special TEXT.DAT printf style text lines, splicing multiple lines, */
/* replacing escaped characters, and allocating the memory */ /* replacing escaped characters, and allocating the memory */
/****************************************************************************/ /****************************************************************************/
char *readtext(long *line,FILE *stream,long dflt) char *readtext(int *line,FILE *stream,int dflt)
{ {
char buf[MAX_TEXTDAT_ITEM_LEN+256],str[MAX_TEXTDAT_ITEM_LEN+1],tmp[256],*p,*p2; char buf[MAX_TEXTDAT_ITEM_LEN+256],str[MAX_TEXTDAT_ITEM_LEN+1],tmp[256],*p,*p2;
int i,j,k; int i,j,k;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment