home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume8 / mkproto < prev    next >
Text File  |  1989-09-06  |  23KB  |  937 lines

  1. Newsgroups: comp.sources.misc
  2. subject: v08i030: mkproto -- make ANSI style prototypes
  3. from: allbery@uunet.UU.NET (Brandon S. Allbery - comp.sources.misc)
  4. Reply-To: ersmith@uwovax.uwo.ca
  5.  
  6. Posting-number: Volume 8, Issue 30
  7. Submitted-by: ersmith@uwovax.uwo.ca
  8. Archive-name: mkproto
  9.  
  10. Here is mkproto, a program for generating prototype declarations for all
  11. functions appearing in a C source file. The input C code may be either
  12. K&R or ANSI C (i.e. it's OK if the functions are defined using prototypes).
  13. Unlike some of the sed-based scripts floating around, it correctly
  14. handles prototype promotion (e.g. the prototype for 'int foo() char x;...'
  15. is 'int foo(int x)'). Also, it should work OK on just about any computer,
  16. not just Unix-based ones (it's been tested under minix, Unix, and TOS).
  17.  
  18. Use: typically, you would type 'mkproto *.c >proto.h' and then add a
  19. '#include "proto.h"' line to all the C source files. An ANSI conformant
  20. compiler will then be able to do type checking on function calls across
  21. module boundaries. As a bonus, proto.h will tell you which source files
  22. functions were defined in, and (if you gave the -n function to mkproto)
  23. their line numbers. The resulting include file may also be used by
  24. non-ANSI compilers; you can disable this feature (for cleaner, strictly
  25. ANSI-conforming output) with the -p flag.
  26.  
  27. Please read the description of bugs in mkproto.man; definitely mkproto
  28. will not handle all programs correctly, but it does work on the majority of
  29. them. A sample of its output is provided in the file "mkproto.h"; this
  30. is the result of 'mkproto mkproto.c >mkproto.h'.
  31.  
  32. There is ABSOLUTELY NO WARRANTY for the program; as I said, it doesn't work
  33. on all programs (complicated function definitions can make it produce bogus
  34. output). It does what I need, though, and it can certainly make porting stuff
  35. to ANSI compilers easier.
  36.  
  37. Mkproto is in the public domain. If you find any bugs (other than the ones
  38. documented) please let me know.
  39. --
  40. Eric R. Smith                     email:
  41. Dept. of Mathematics            ersmith@uwovax.uwo.ca
  42. University of Western Ontario   ersmith@uwovax.bitnet
  43. London, Ont. Canada N6A 5B7
  44. ph: (519) 661-3638
  45.  
  46. #    This is a shell archive.
  47. #    Remove everything above and including the cut line.
  48. #    Then run the rest of the file through sh.
  49. #----cut here-----cut here-----cut here-----cut here----#
  50. #!/bin/sh
  51. # shar:    Shell Archiver
  52. #    Run the following text with /bin/sh to create:
  53. #    makefile.min
  54. #    makefile.tos
  55. #    makefile.unx
  56. #    mkproto.c
  57. #    mkproto.h
  58. #    mkproto.man
  59. #    README
  60. # This archive created: 05 September 1989 05:51:28 PM EDT
  61. # By:    eric (at home)
  62. echo shar: extracting makefile.min
  63. sed 's/^X//' << \SHAR_EOF > makefile.min
  64. XCC = mgcc
  65. XALL = mkproto
  66. X
  67. Xmkproto : mkproto.c mkproto.h
  68. X    $(CC) -O -o mkproto mkproto.c -mshort -s
  69. Xclean:
  70. X    rm -f *.o
  71. X
  72. Xrealclean: clean
  73. X    rm -f $(ALL) report core
  74. SHAR_EOF
  75. if test 159 -ne "`wc -c makefile.min`"
  76. then
  77. echo shar: error transmitting makefile.min '(should have been 159 characters)'
  78. fi
  79. echo shar: extracting makefile.tos
  80. sed 's/^X//' << \SHAR_EOF > makefile.tos
  81. XCC = gcc
  82. XALL = mkproto.ttp
  83. X
  84. Xmkproto.ttp : mkproto.c mkproto.h
  85. X    $(CC) -O -o mkproto.ttp mkproto.c -mshort -s
  86. Xclean:
  87. X    rm -f *.o
  88. X
  89. Xrealclean: clean
  90. X    rm -f $(ALL) report core
  91. SHAR_EOF
  92. if test 170 -ne "`wc -c makefile.tos`"
  93. then
  94. echo shar: error transmitting makefile.tos '(should have been 170 characters)'
  95. fi
  96. echo shar: extracting makefile.unx
  97. sed 's/^X//' << \SHAR_EOF > makefile.unx
  98. XCC = cc
  99. XALL =  mkproto
  100. X
  101. Xmkproto : mkproto.c mkproto.h
  102. X    $(CC) -O -o mkproto mkproto.c
  103. Xclean:
  104. X    rm -f *.o
  105. X
  106. Xrealclean: clean
  107. X    rm -f $(ALL) report core
  108. SHAR_EOF
  109. if test 147 -ne "`wc -c makefile.unx`"
  110. then
  111. echo shar: error transmitting makefile.unx '(should have been 147 characters)'
  112. fi
  113. echo shar: extracting mkproto.c
  114. sed 's/^X//' << \SHAR_EOF > mkproto.c
  115. X/* Program to extract function declarations from C source code */
  116. X/* Written by Eric R. Smith and placed in the public domain    */
  117. X/* Thanks are due to Jwahar R. Bammi for fixing several bugs   */
  118. X/* and providing the Unix makefiles.                           */
  119. X
  120. X#if defined(__STDC__) && !defined(minix)
  121. X#include <stddef.h>
  122. X#include <stdlib.h>
  123. X#else
  124. X#define EXIT_SUCCESS  0
  125. X#define EXIT_FAILURE  1
  126. Xextern char *malloc();
  127. X#endif
  128. X
  129. X#include <stdio.h>
  130. X#include <ctype.h>
  131. X#include <string.h>
  132. X
  133. X/*#define DEBUG(s) (fputs(s, stderr)) /* */
  134. X#define DEBUG(s) /* */
  135. X
  136. X#define ISCSYM(x) ((x) > 0 && (isalnum(x) || (x) == '_'))
  137. X#define ABORTED ( (Word *) -1 )
  138. X#define MAXPARAM 20         /* max. number of parameters to a function */
  139. X#define NEWBUFSIZ (20480*sizeof(char)) /* new buffer size */
  140. X
  141. Xint inquote = 0;        /* in a quote?? */
  142. Xint newline_seen = 1;        /* are we at the start of a line */
  143. Xlong linenum  = 1L;        /* line number in current file */
  144. Xint dostatic = 0;        /* do static functions? */
  145. Xint donum    = 0;        /* print line numbers? */
  146. Xint dohead   = 1;        /* do file headers? */
  147. Xint docond   = 1;        /* conditionalize for non-ANSI compilers? */
  148. Xint glastc   = ' ';        /* last char. seen by getsym() */
  149. X
  150. Xtypedef struct word {
  151. X    struct word *next;
  152. X    char   string[1];
  153. X} Word;
  154. X
  155. X#include "mkproto.h"
  156. X
  157. X/*
  158. X * Routines for manipulating lists of words.
  159. X */
  160. X
  161. XWord *word_alloc(s)
  162. X    char *s;
  163. X{
  164. X    Word *w;
  165. X
  166. X    w = (Word *) malloc(sizeof(Word) + strlen(s) + 1); /* ++jrb */
  167. X    strcpy(w->string, s);
  168. X    w->next = NULL;
  169. X    return w;
  170. X}
  171. X
  172. Xvoid word_free(w)
  173. X    Word *w;
  174. X{
  175. X    Word *oldw;
  176. X    while (w) {
  177. X        oldw = w;
  178. X        w = w->next;
  179. X        free(oldw);
  180. X    }
  181. X}
  182. X
  183. X/* return the length of a list; empty words are not counted */
  184. Xint
  185. XList_len(w)
  186. X    Word *w;
  187. X{
  188. X    int count = 0;
  189. X
  190. X    while (w) {
  191. X        if (*w->string) count++;
  192. X        w = w->next;
  193. X    }
  194. X    return count;
  195. X}
  196. X
  197. X/* Append two lists, and return the result */
  198. X
  199. XWord *word_append(w1, w2)
  200. X    Word *w1, *w2;
  201. X{
  202. X    Word *r, *w;
  203. X
  204. X    r = w = word_alloc("");
  205. X
  206. X    while (w1) {
  207. X        w->next = word_alloc(w1->string);
  208. X        w = w->next;
  209. X        w1 = w1->next;
  210. X    }
  211. X    while (w2) {
  212. X        w->next = word_alloc(w2->string);
  213. X        w = w->next;
  214. X        w2 = w2->next;
  215. X    }
  216. X
  217. X    return r;
  218. X}
  219. X    
  220. X/* see if the last entry in w2 is in w1 */
  221. X
  222. Xint
  223. Xfoundin(w1, w2)
  224. X    Word *w1, *w2;
  225. X{
  226. X    while (w2->next)
  227. X        w2 = w2->next;
  228. X
  229. X    while (w1) {
  230. X        if (!strcmp(w1->string, w2->string))
  231. X            return 1;
  232. X        w1 = w1->next;
  233. X    }
  234. X    return 0;
  235. X}
  236. X
  237. X/* add the string s to the given list of words */
  238. X
  239. Xvoid addword(w, s)
  240. X    Word *w; char *s;
  241. X{
  242. X    while (w->next) w = w->next;
  243. X    w->next = word_alloc(s);
  244. X}
  245. X
  246. X/* given a list representing a type and a variable name, extract just
  247. X * the base type, e.g. "struct word *x" would yield "struct word"
  248. X */
  249. X
  250. XWord *typelist(p)
  251. X    Word *p;
  252. X{
  253. X    Word *w, *r;
  254. X
  255. X    r = w = word_alloc("");
  256. X    while (p && p->next) {
  257. X        if (p->string[0] && !ISCSYM(p->string[0]))
  258. X            break;
  259. X        w->next = word_alloc(p->string);
  260. X        w = w->next;
  261. X        p = p->next;
  262. X    }
  263. X    return r;
  264. X}
  265. X
  266. X/* typefixhack: promote formal parameters of type "char", "unsigned char",
  267. X   "short", or "unsigned short" to "int".
  268. X*/
  269. X
  270. Xvoid typefixhack(w)
  271. X    Word *w;
  272. X{
  273. X    Word *oldw = 0;
  274. X
  275. X    while (w) {
  276. X        if (*w->string) {
  277. X            if ( (!strcmp(w->string, "char") ||
  278. X                  !strcmp(w->string, "short") )
  279. X                && (List_len(w->next) < 2) )
  280. X            {
  281. X                if (oldw && !strcmp(oldw->string, "unsigned")) {
  282. X                    oldw->next = w->next;
  283. X                    free(w);
  284. X                    w = oldw;
  285. X                }
  286. X                strcpy(w->string, "int");
  287. X            }
  288. X        }
  289. X        w = w->next;
  290. X    }
  291. X}
  292. X
  293. X/* read a character: if it's a newline, increment the line count */
  294. X
  295. X#ifdef __GNUC__    /* ++jrb */
  296. Xinline
  297. X#endif
  298. Xint ngetc(f)
  299. X    FILE *f;
  300. X{
  301. X    int c;
  302. X
  303. X    c = getc(f);
  304. X    if (c == '\n') linenum++;
  305. X
  306. X    return c;
  307. X}
  308. X
  309. X/* read the next character from the file. If the character is '\' then
  310. X * read and skip the next character. Any comment sequence is converted
  311. X * to a blank.
  312. X */
  313. X
  314. Xint fnextch(f)
  315. X    FILE *f;
  316. X{
  317. X    int c, lastc, incomment;
  318. X
  319. X    c = ngetc(f);
  320. X    while (c == '\\') {
  321. XDEBUG("fnextch: in backslash loop\n");
  322. X        c = ngetc(f);    /* skip a character */
  323. X        c = ngetc(f);
  324. X    }
  325. X    if (c == '/' && !inquote) {
  326. X        c = ngetc(f);
  327. X        if (c == '*') {
  328. X            incomment = 1;
  329. X            c = ' ';
  330. XDEBUG("fnextch: comment seen\n");
  331. X            while (incomment) {
  332. X                lastc = c;
  333. X                c = ngetc(f);
  334. X                if (lastc == '*' && c == '/')
  335. X                    incomment = 0;
  336. X                else if (c < 0)
  337. X                    return c;
  338. X            }
  339. X            return fnextch(f);
  340. X        }
  341. X        else {
  342. X            if (c == '\n') linenum--;
  343. X            ungetc(c, f);
  344. X            return '/';
  345. X        }
  346. X    }
  347. X    return c;
  348. X}
  349. X
  350. X
  351. X/* Get the next "interesting" character. Comments are skipped, and strings
  352. X * are converted to "0". Also, if a line starts with "#" it is skipped.
  353. X */
  354. X
  355. Xint nextch(f)
  356. X    FILE *f;
  357. X{
  358. X    int c;
  359. X
  360. X    c = fnextch(f);
  361. X    if (newline_seen && c == '#') {
  362. X        do {
  363. X            c = fnextch(f);
  364. X        } while (c >= 0 && c != '\n');
  365. X        if (c < 0)
  366. X            return c;
  367. X    }
  368. X    newline_seen = (c == '\n');
  369. X
  370. X    if (c == '\'' || c == '\"') {
  371. XDEBUG("nextch: in a quote\n");
  372. X        inquote = c;
  373. X        while ( (c = fnextch(f)) >= 0 ) {
  374. X            if (c == inquote) {
  375. X                inquote = 0;
  376. XDEBUG("nextch: out of quote\n");
  377. X                return '0';
  378. X            }
  379. X        }
  380. XDEBUG("nextch: EOF in a quote\n");
  381. X    }
  382. X    return c;
  383. X}
  384. X
  385. X/*
  386. X * Get the next symbol from the file, skipping blanks.
  387. X * Return 0 if OK, -1 for EOF.
  388. X * Also collapses everything between { and }
  389. X */
  390. X
  391. Xint
  392. Xgetsym(buf, f)
  393. X    char *buf; FILE *f;
  394. X{
  395. X    register int c;
  396. X    int inbrack = 0;
  397. X
  398. XDEBUG("in getsym\n");
  399. X    c = glastc;
  400. X    while ((c > 0) && isspace(c)) {
  401. X        c = nextch(f);
  402. X    }
  403. XDEBUG("getsym: spaces skipped\n");
  404. X    if (c < 0) {
  405. XDEBUG("EOF read in getsym\n");
  406. X        return -1;
  407. X    }
  408. X    if (c == '{') {
  409. X        inbrack = 1;
  410. XDEBUG("getsym: in bracket\n");
  411. X        while (inbrack) {
  412. X            c = nextch(f);
  413. X            if (c < 0) {
  414. XDEBUG("getsym: EOF seen in bracket loop\n");
  415. X                glastc = c;
  416. X                return c;
  417. X            }
  418. X            if (c == '{') inbrack++;
  419. X            else if (c == '}') inbrack--;
  420. X        }
  421. X        strcpy(buf, "{}");
  422. X        glastc = nextch(f);
  423. XDEBUG("getsym: out of in bracket loop\n");
  424. X        return 0;
  425. X    }
  426. X    if (!ISCSYM(c)) {
  427. X        *buf++ = c;
  428. X        *buf = 0;
  429. X        glastc = nextch(f);
  430. XDEBUG("getsym: returning special symbol\n");
  431. X        return 0;
  432. X    }
  433. X    while (ISCSYM(c)) {
  434. X        *buf++ = c;
  435. X        c = nextch(f);
  436. X    }
  437. X    *buf = 0;
  438. X    glastc = c;
  439. XDEBUG("getsym: returning word\n");
  440. X    return 0;
  441. X}
  442. X
  443. X/*
  444. X * skipit: skip until a ";" or the end of a function declaration is seen
  445. X */
  446. Xint skipit(buf, f)
  447. X    char *buf;
  448. X    FILE *f;
  449. X{
  450. X    int i;
  451. X
  452. X    do {
  453. XDEBUG("in skipit loop\n");
  454. X        i = getsym(buf, f);
  455. X        if (i < 0) return i;
  456. X    } while (*buf != ';' && *buf != '{');
  457. X
  458. X    return 0;
  459. X}
  460. X
  461. X/*
  462. X * Get a parameter list; when this is called the next symbol in line
  463. X * should be the first thing in the list.
  464. X */
  465. X
  466. XWord *getparamlist(f)
  467. X    FILE *f;
  468. X{
  469. X    static Word *pname[MAXPARAM]; /* parameter names */
  470. X    Word    *tlist,        /* type name */
  471. X        *plist;        /* temporary */
  472. X    int      np = 0;        /* number of parameters */
  473. X    int      typed[MAXPARAM];  /* parameter has been given a type */
  474. X    int    tlistdone;    /* finished finding the type name */
  475. X    int    sawsomething;
  476. X    int      i;
  477. X    int    inparen = 0;
  478. X    char buf[80];
  479. X
  480. XDEBUG("in getparamlist\n");
  481. X    for (i = 0; i < MAXPARAM; i++)
  482. X        typed[i] = 0;
  483. X
  484. X    plist = word_alloc("");
  485. X
  486. X/* first, get the stuff inside brackets (if anything) */
  487. X
  488. X    sawsomething = 0;    /* gets set nonzero when we see an arg */
  489. X    for (;;) {
  490. X        if (getsym(buf, f) < 0) return NULL;
  491. X        if (*buf == ')' && (--inparen < 0)) {
  492. X            if (sawsomething) {    /* if we've seen an arg */
  493. X                pname[np] = plist;
  494. X                plist = word_alloc("");
  495. X                np++;
  496. X            }
  497. X            break;
  498. X        }
  499. X        if (*buf == ';') {    /* something weird */
  500. X            return ABORTED;
  501. X        }
  502. X        sawsomething = 1;    /* there's something in the arg. list */
  503. X        if (*buf == ',' && inparen == 0) {
  504. X            pname[np] = plist;
  505. X            plist = word_alloc("");
  506. X            np++;
  507. X        }
  508. X        else {
  509. X            addword(plist, buf);
  510. X            if (*buf == '(') inparen++;
  511. X        }
  512. X    }
  513. X
  514. X/* next, get the declarations after the function header */
  515. X
  516. X    inparen = 0;
  517. X
  518. X    tlist = word_alloc("");
  519. X    plist = word_alloc("");
  520. X    tlistdone = 0;
  521. X    sawsomething = 0;
  522. X    for(;;) {
  523. X        if (getsym(buf, f) < 0) return NULL;
  524. X
  525. X/* handle a list like "int x,y,z" */
  526. X        if (*buf == ',' && !inparen) {
  527. X            if (!sawsomething)
  528. X                return NULL;
  529. X            for (i = 0; i < np; i++) {
  530. X                if (!typed[i] && foundin(plist, pname[i])) {
  531. X                    typed[i] = 1;
  532. X                    word_free(pname[i]);
  533. X                    pname[i] = word_append(tlist, plist);
  534. X                /* promote types */
  535. X                    typefixhack(pname[i]);
  536. X                    break;
  537. X                }
  538. X            }
  539. X            if (!tlistdone) {
  540. X                tlist = typelist(plist);
  541. X                tlistdone = 1;
  542. X            }
  543. X            word_free(plist);
  544. X            plist = word_alloc("");
  545. X        }
  546. X/* handle the end of a list */
  547. X        else if (*buf == ';') {
  548. X            if (!sawsomething)
  549. X                return ABORTED;
  550. X            for (i = 0; i < np; i++) {
  551. X                if (!typed[i] && foundin(plist, pname[i])) {
  552. X                    typed[i] = 1;
  553. X                    word_free(pname[i]);
  554. X                    pname[i] = word_append(tlist, plist);
  555. X                    typefixhack(pname[i]);
  556. X                    break;
  557. X                }
  558. X            }
  559. X            tlistdone = 0;
  560. X            word_free(tlist); word_free(plist);
  561. X            tlist = word_alloc("");
  562. X            plist = word_alloc("");
  563. X        }
  564. X/* handle the  beginning of the function */
  565. X        else if (!strcmp(buf, "{}")) break;
  566. X/* otherwise, throw the word into the list (except for "register") */
  567. X        else if (strcmp(buf, "register")) {
  568. X            sawsomething = 1;
  569. X            addword(plist, buf);
  570. X            if (*buf == '(') inparen++;
  571. X            if (*buf == ')') inparen--;
  572. X        }
  573. X    }
  574. X
  575. X/* Now take the info we have and build a prototype list */
  576. X
  577. X/* empty parameter list means "void" */
  578. X    if (np == 0)
  579. X        return word_alloc("void");
  580. X
  581. X    plist = tlist = word_alloc("");
  582. X    for (i = 0; i < np; i++) {
  583. X
  584. X/* If no type provided, make it an "int" */
  585. X        if ( !(pname[i]->next) ||
  586. X       (!(pname[i]->next->next)&&strcmp(pname[i]->next->string, "void"))) {
  587. X            addword(tlist, "int");
  588. X        }
  589. X        while (tlist->next) tlist = tlist->next;
  590. X        tlist->next = pname[i];
  591. X        if (i < np - 1)
  592. X            addword(tlist, ", ");
  593. X    }
  594. X    return plist;
  595. X}
  596. X
  597. X/*
  598. X * emit a function declaration. The attributes and name of the function
  599. X * are in wlist; the parameters are in plist.
  600. X */
  601. Xvoid emit(wlist, plist, startline)
  602. X    Word *wlist, *plist;
  603. X    long  startline;
  604. X{
  605. X    Word *w;
  606. X    int count = 0;
  607. X
  608. XDEBUG("emit called\n");
  609. X    if (donum)
  610. X        printf("/*%8ld */ ", startline);
  611. X
  612. X    for (w = wlist; w; w = w->next) {
  613. X        if (w->string[0])
  614. X            count ++;
  615. X    }
  616. X
  617. X    if (count < 2)
  618. X        printf("int ");
  619. X
  620. X    for (w = wlist; w; w = w->next) {
  621. X        printf("%s", w->string);
  622. X        if (ISCSYM(w->string[0]))
  623. X            printf(" ");
  624. X    }
  625. X    if (docond)
  626. X        printf("P((");
  627. X    else
  628. X        printf("( ");
  629. X    for (w = plist; w; w = w->next) {
  630. X        printf("%s", w->string);
  631. X        if (ISCSYM(w->string[0]))
  632. X            printf(" ");
  633. X    }
  634. X    if (docond)
  635. X        printf("));\n");
  636. X    else
  637. X        printf(");\n");
  638. X}
  639. X
  640. X/*
  641. X * get all the function declarations
  642. X */
  643. X
  644. Xvoid getdecl(f)
  645. X    FILE *f;
  646. X{
  647. X    Word *plist, *wlist = NULL;
  648. X    char buf[80];
  649. X    int sawsomething;
  650. X    long startline;        /* line where declaration started */
  651. X    int oktoprint;
  652. Xagain:
  653. X    word_free(wlist);
  654. X    wlist = word_alloc("");
  655. X    sawsomething = 0;
  656. X    oktoprint = 1;
  657. X
  658. X    for(;;) {
  659. XDEBUG("main getdecl loop\n");
  660. X        if (getsym(buf,f) < 0) {
  661. XDEBUG("EOF in getdecl loop\n");
  662. X             return;
  663. X        }
  664. X/* try to guess when a declaration is not an external function definition */
  665. X        if (!strcmp(buf, ",") || !strcmp(buf, "{}") ||
  666. X            !strcmp(buf, "=") || !strcmp(buf, "typedef") ||
  667. X            !strcmp(buf, "extern")) {
  668. X            skipit(buf, f);
  669. X            goto again;
  670. X        }
  671. X        if (!dostatic && !strcmp(buf, "static")) {
  672. X            oktoprint = 0;
  673. X        }
  674. X/* for the benefit of compilers that allow "inline" declarations */
  675. X        if (!strcmp(buf, "inline") && !sawsomething)
  676. X            continue;
  677. X        if (!strcmp(buf, ";")) goto again;
  678. X
  679. X/* A left parenthesis *might* indicate a function definition */
  680. X        if (!strcmp(buf, "(")) {
  681. X            startline = linenum;
  682. X            if (!sawsomething || !(plist = getparamlist(f))) {
  683. X                skipit(buf, f);
  684. X                goto again;
  685. X            }
  686. X            if (plist == ABORTED)
  687. X                goto again;
  688. X
  689. X/* It seems to have been what we wanted */
  690. X            if (oktoprint)
  691. X                emit(wlist, plist, startline);
  692. X            word_free(plist);
  693. X            goto again;
  694. X        }
  695. X        addword(wlist, buf);
  696. X        sawsomething = 1;
  697. X    }
  698. X}
  699. X
  700. Xvoid
  701. Xmain(argc, argv)
  702. Xint argc; char **argv;
  703. X{
  704. X    FILE *f;
  705. X    char *t, *iobuf;
  706. X    extern void Usage();
  707. X
  708. X    argv++; argc--;
  709. X
  710. X    iobuf = malloc(NEWBUFSIZ);
  711. X    while (*argv && **argv == '-') {
  712. X        t = *argv++; --argc; t++;
  713. X        while (*t) {
  714. X            if (*t == 's')
  715. X                dostatic = 1;
  716. X            else if (*t == 'n')
  717. X                donum = 1;
  718. X            else if (*t == 'p')
  719. X                docond = 0;
  720. X            else
  721. X                Usage();
  722. X            t++;
  723. X        }
  724. X    }
  725. X
  726. X    if (docond) {
  727. X        printf("#ifdef __STDC__\n");
  728. X        printf("# define\tP(s) s\n");
  729. X        printf("#else\n");
  730. X        printf("# define P(s) ()\n");
  731. X        printf("#endif\n\n");
  732. X    }
  733. X    if (argc == 0)
  734. X        getdecl(stdin);
  735. X    else
  736. X        while (argc > 0 && *argv) {
  737. XDEBUG("trying a new file\n");
  738. X            if (!(f = fopen(*argv, "r"))) {
  739. X                perror(*argv);
  740. X                exit(EXIT_FAILURE);
  741. X            }
  742. X            if (iobuf)
  743. X                setvbuf(f, iobuf, _IOFBF, NEWBUFSIZ);
  744. X            if (dohead)
  745. X                printf("\n/* %s */\n", *argv);
  746. X            linenum = 1;
  747. X            newline_seen = 1;
  748. X            glastc = ' ';
  749. XDEBUG("calling getdecl\n");
  750. X            getdecl(f);
  751. XDEBUG("back from getdecl\n");
  752. X            argc--; argv++;
  753. X            fclose(f);
  754. XDEBUG("back from fclose\n");
  755. X        }
  756. X    if (docond) {
  757. X        printf("\n#undef P\n");    /* clean up namespace */
  758. X    }
  759. X    exit(EXIT_SUCCESS);
  760. X}
  761. X
  762. X
  763. Xvoid Usage()
  764. X{
  765. X    fputs("Usage: mkproto [-n][-s][-p][files ...]\n",stderr);
  766. X    fputs("   -n: put line numbers of declarations as comments\n",stderr);
  767. X    fputs("   -s: include declarations for static functions\n", stderr);
  768. X    fputs("   -p: don't make header files readable by non-ANSI compilers\n",
  769. X          stderr);
  770. X    exit(EXIT_FAILURE);
  771. X}
  772. SHAR_EOF
  773. if test 12844 -ne "`wc -c mkproto.c`"
  774. then
  775. echo shar: error transmitting mkproto.c '(should have been 12844 characters)'
  776. fi
  777. echo shar: extracting mkproto.h
  778. sed 's/^X//' << \SHAR_EOF > mkproto.h
  779. X#ifdef __STDC__
  780. X# define    P(s) s
  781. X#else
  782. X# define P(s) ()
  783. X#endif
  784. X
  785. X
  786. X/* mkproto.c */
  787. XWord *word_alloc P((char *s ));
  788. Xvoid word_free P((Word *w ));
  789. Xint List_len P((Word *w ));
  790. XWord *word_append P((Word *w1 , Word *w2 ));
  791. Xint foundin P((Word *w1 , Word *w2 ));
  792. Xvoid addword P((Word *w , char *s ));
  793. XWord *typelist P((Word *p ));
  794. Xvoid typefixhack P((Word *w ));
  795. Xint ngetc P((FILE *f ));
  796. Xint fnextch P((FILE *f ));
  797. Xint nextch P((FILE *f ));
  798. Xint getsym P((char *buf , FILE *f ));
  799. Xint skipit P((char *buf , FILE *f ));
  800. XWord *getparamlist P((FILE *f ));
  801. Xvoid emit P((Word *wlist , Word *plist , long startline ));
  802. Xvoid getdecl P((FILE *f ));
  803. Xvoid main P((int argc , char **argv ));
  804. Xvoid Usage P((void ));
  805. X
  806. X#undef P
  807. SHAR_EOF
  808. if test 703 -ne "`wc -c mkproto.h`"
  809. then
  810. echo shar: error transmitting mkproto.h '(should have been 703 characters)'
  811. fi
  812. echo shar: extracting mkproto.man
  813. sed 's/^X//' << \SHAR_EOF > mkproto.man
  814. XNAME
  815. X   mkproto - make prototypes for functions
  816. X
  817. X
  818. XSYNOPSIS
  819. X   mkproto [-n] [-s] [-p] [ file ] ...
  820. X
  821. X
  822. XDESCRIPTION
  823. X   Mkproto takes as input one or more C source code files, and
  824. Xproduces as output (on the standard output stream) a list of function
  825. Xprototypes (a la ANSI) for the external functions defined in the
  826. Xgiven source files. This output, redirected to a file, is suitable
  827. Xfor #include'ing in a C source file.
  828. X   The function definitions in the original source
  829. Xmay be either "old-style" (in which case appropriate prototypes are
  830. Xgenerated for the functions) or "new-style" (in which the definition
  831. Xincludes a prototype already).
  832. X   A -n option causes the line number where each function was defined
  833. Xto be prepended to the prototype declaration as a comment.
  834. X   A -s option causes prototypes to be generated for functions declard
  835. X"static" as well as extern functions.
  836. X   A -p option causes the prototypes emitted to be only readable by ANSI
  837. Xcompilers. Normally, the prototypes are "macro-ized" so that compilers
  838. Xwith __STDC__ not defined don't see them. 
  839. X   If files are specified on the command line, then a comment specifying
  840. Xthe file of origin is emitted before the prototypes constructed from
  841. Xthat file. If no files are given, then no comments are emitted and
  842. Xthe C source code is taken from the standard input stream.
  843. X
  844. XBUGS
  845. X   Mkproto is easily confused by complicated declarations, such as
  846. X         int ((*signal)())() { ...
  847. Xor
  848. X         struct foo { int x, y; } foofunc() { ...
  849. X
  850. X   Float types are not properly promoted in old style definitions,
  851. Xi.e.
  852. X         int test(f) float f; { ...
  853. Xshould (because of the default type conversion rules) have prototype
  854. X         int test(double f);
  855. Xrather than the incorrect
  856. X         int test(float f);
  857. Xgenerated by mkproto.
  858. X
  859. X   Some programs may need to be run through the preprocessor before
  860. Xbeing run through mkproto. The -n option is unlikely to work as desired
  861. Xon the output of a preprocessor.
  862. X
  863. X   Typedef'd types aren't correctly promoted, e.g. for
  864. X        typedef schar char; int foo(x) schar x;...
  865. Xmkproto incorrectly generates the prototype int foo(schar x) rather than
  866. Xthe (correct) int foo(int x).
  867. X
  868. X   Functions named "inline" with no explicit type qualifiers are not
  869. Xrecognized.
  870. X
  871. XSEE ALSO
  872. X   cc(1), lint(1)
  873. X
  874. XAUTHOR
  875. X   Eric R. Smith.
  876. X
  877. XNOTE
  878. X   There is no warranty for this program (as noted above, it's guaranteed
  879. Xto break sometimes anyways!). Mkproto is in the public domain.
  880. SHAR_EOF
  881. if test 2433 -ne "`wc -c mkproto.man`"
  882. then
  883. echo shar: error transmitting mkproto.man '(should have been 2433 characters)'
  884. fi
  885. echo shar: extracting README
  886. sed 's/^X//' << \SHAR_EOF > README
  887. XHere is mkproto, a program for generating prototype declarations for all
  888. Xfunctions appearing in a C source file. The input C code may be either
  889. XK&R or ANSI C (i.e. it's OK if the functions are defined using prototypes).
  890. XUnlike some of the sed-based scripts floating around, it correctly
  891. Xhandles prototype promotion (e.g. the prototype for 'int foo() char x;...'
  892. Xis 'int foo(int x)'). Also, it should work OK on just about any computer,
  893. Xnot just Unix-based ones (it's been tested under minix, Unix, and TOS).
  894. X
  895. XUse: typically, you would type 'mkproto *.c >proto.h' and then add a
  896. X'#include "proto.h"' line to all the C source files. An ANSI conformant
  897. Xcompiler will then be able to do type checking on function calls across
  898. Xmodule boundaries. As a bonus, proto.h will tell you which source files
  899. Xfunctions were defined in, and (if you gave the -n function to mkproto)
  900. Xtheir line numbers. The resulting include file may also be used by
  901. Xnon-ANSI compilers; you can disable this feature (for cleaner, strictly
  902. XANSI-conforming output) with the -p flag.
  903. X
  904. XPlease read the description of bugs in mkproto.man; definitely mkproto
  905. Xwill not handle all programs correctly, but it does work on the majority of
  906. Xthem. A sample of its output is provided in the file "mkproto.h"; this
  907. Xis the result of 'mkproto mkproto.c >mkproto.h'.
  908. X
  909. XThere is ABSOLUTELY NO WARRANTY for the program; as I said, it doesn't work
  910. Xon all programs (complicated function definitions can make it produce bogus
  911. Xoutput). It does what I need, though, and it can certainly make porting stuff
  912. Xto ANSI compilers easier.
  913. X
  914. XMkproto is in the public domain. If you find any bugs (other than the ones
  915. Xdocumented) please let me know.
  916. X--
  917. XEric R. Smith                     email:
  918. XDept. of Mathematics            ersmith@uwovax.uwo.ca
  919. XUniversity of Western Ontario   ersmith@uwovax.bitnet
  920. XLondon, Ont. Canada N6A 5B7
  921. Xph: (519) 661-3638
  922. SHAR_EOF
  923. if test 1879 -ne "`wc -c README`"
  924. then
  925. echo shar: error transmitting README '(should have been 1879 characters)'
  926. fi
  927. #    End of shell archive
  928. exit 0
  929. -- 
  930. --
  931. Eric R. Smith                     email:
  932. Dept. of Mathematics            ERSMITH@uwovax.uwo.ca
  933. University of Western Ontario   ERSMITH@uwovax.bitnet
  934. London, Ont. Canada N6A 5B7
  935. ph: (519) 661-3638
  936.  
  937.