home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / lang / tcl / 1769 < prev    next >
Encoding:
Internet Message Format  |  1992-11-08  |  1.2 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!caen!uflorida!reef.cis.ufl.edu!malhar
  2. From: palkar@reef.cis.ufl.edu (MMP)
  3. Newsgroups: comp.lang.tcl
  4. Subject: Parsing "C" code in TCL ???
  5. Keywords: Interp
  6. Message-ID: <37572@uflorida.cis.ufl.edu>
  7. Date: 8 Nov 92 22:31:32 GMT
  8. Sender: news@uflorida.cis.ufl.edu
  9. Reply-To: palkar@reef.cis.ufl.edu (MMP)
  10. Organization: U of Florida. Computer Science Dept.
  11. Lines: 23
  12. Nntp-Posting-Host: reef.cis.ufl.edu
  13.  
  14. Hi,
  15.  
  16. I am new for this language. I have learned the TCL syntax and I am able to use the library to write small programmes in Tk. Now I plan to write an user interface for a bunch of C codes that I have written. However I am not able get all the necessary information on how I should proceed. I have read the FAQ , talk series, man pages and the first part of the book.
  17.  
  18. For example : I have the following sample code which I have to use in Tcl as a command that I can use in Tk.
  19.  
  20. void trial (int K, int M)
  21. {
  22. if(M==1){
  23.     for (i=0;i<K;i++)
  24.         printf("%d \n",K);
  25. }
  26. else {
  27.     for (i=0;i<K;i++)
  28.         printf("%d \n",K*(K-1));
  29. }
  30. }
  31. How do I convert TRIAL in a Tcl command. Do I have recompile everything (Tcl );
  32. Please Help.
  33.  
  34. MALHAR
  35.  
  36. ps : This just a sample code. I think I can do that in Tcl/Tk. BUT I want to use "C".
  37.