home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / CENTRTN.MOD < prev    next >
Text File  |  1992-12-01  |  1KB  |  38 lines

  1.                                CENTERING ROUTINE
  2.                  By The Captain of the White Star Line (@2370)
  3.                  =============================================
  4.  
  5. This is a function which will center any line of text on the user's screen.
  6. It checks the user's screen width, so it will center just as well for 40-column users as it will for 80-column.
  7. It is used the same way you use the prt() command. For example,
  8.  
  9. center(2,"General Text Files");
  10.  
  11. will print out General Text Files with color 2, which is usually yellow.
  12.  
  13. In COM.C, add the following block after void pl(char *s);
  14. ---------------------------------------------------------
  15. void center(int a, char *s)
  16. {
  17.   int i,i1,i2;
  18.  
  19.   i1 = strlen(s)/2;
  20.   i2 = (thisuser.screenchars/2)-i1;
  21.   for (i=0; i<i2; i++)
  22.     outstr(" ");
  23.   ansic(a);
  24.   outstr(s);
  25.   ansic(0);
  26. }
  27. ---------------------------------------------------------
  28.  
  29. In FCNS.H, add the following line at the end:
  30.  
  31. void center(int a, char *s);
  32.  
  33. ---------------------------------------------------------
  34. Now just recompile the BBS and start finding places to use it. A suggestion
  35. would be the titles of file directories in XFER.C.
  36.  
  37. ______________________________________________________________________________
  38.