Changeset 1673 for trunk/dll/uudecode.c


Ignore:
Timestamp:
Dec 30, 2012, 7:51:01 PM (13 years ago)
Author:
Gregg Young
Message:

Update to Doxygen comment style Ticket 55. Also some minor code cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/uudecode.c

    r1544 r1673  
    4747static PSZ pszSrcFile = __FILE__;
    4848
    49 /* prototypes */
     49// prototypes
    5050static BOOL decode(FILE * in, FILE * out);
    5151static void outdec(char *p, FILE * f, int n);
    5252
    53 /* single character decode */
     53// single character decode
    5454#define DEC(c)  (((c) - ' ') & 077)
    5555
     
    7373  }
    7474
    75   /* search for header line */
     75  // search for header line
    7676  for (;;) {
    7777    if (!fgets(buf, sizeof(buf), in)) {
     
    9090  dest[CCHMAXPATH - 1] = 0;
    9191  {
    92     /* place dest in same directory as filename by default... */
     92    // place dest in same directory as filename by default...
    9393    char build[CCHMAXPATH], *p;
    9494
     
    110110  }
    111111
    112   /* create output file */
     112  // create output file
    113113  moder = "ab+";
    114114  out = xfsopen(dest, moder, SH_DENYWR, pszSrcFile, __LINE__, TRUE);
     
    132132}
    133133
    134 /*
     134/**
    135135 * copy from in to out, decoding as you go along.
    136136 */
     
    142142
    143143  for (;;) {
    144     /* for each input line */
     144    // for each input line
    145145    if (!xfgets(buf, sizeof(buf), in, pszSrcFile, __LINE__))
    146146      return FALSE;
     
    158158}
    159159
    160 /*
     160/**
    161161 * output a group of 3 bytes (4 input characters).
    162162 * the input chars are pointed to by p, they are to
Note: See TracChangeset for help on using the changeset viewer.