home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / pcmail / termcap / tgetent.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1.3 KB  |  99 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    tgetent 3
  6.  
  7. /* SUMMARY
  8.  
  9. /*    extract terminal entry from capability database
  10.  
  11. /* PROJECT
  12.  
  13. /*    ms-dos/unix compatibility
  14.  
  15. /* PACKAGE
  16.  
  17. /*    termcap
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    tgetent(bp,name)
  22.  
  23. /*    char *bp,*name;
  24.  
  25. /* DESCRIPTION
  26.  
  27. /*    tgetent simulates its UNIX counterpart.
  28.  
  29. /*    Its purpose is to extract from the capability database all
  30.  
  31. /*    information for a specific terminal.
  32.  
  33. /*
  34.  
  35. /*    name should point to a string with the terminal name (usually
  36.  
  37. /*    taken from the environment with getenv(3)).
  38.  
  39. /*    bp should point to a 1024-character buffer for storage of
  40.  
  41. /*    terminal information extracted from the capability database.
  42.  
  43. /*
  44.  
  45. /*    Since the capabilities of the ms-dos console are described by a
  46.  
  47. /*    static data structure, tgetent(3) is a dummy function.
  48.  
  49. /* SEE ALSO
  50.  
  51. /*    termcap(3), Berkeley extensions to UNIX.
  52.  
  53. /* FILES
  54.  
  55. /*    ANSI.SYS, ibm pc console driver.
  56.  
  57. /* AUTHOR(S)
  58.  
  59. /*    W.Z. Venema
  60.  
  61. /*    Eindhoven University of Technology
  62.  
  63. /*    Department of Mathematics and Computer Science
  64.  
  65. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  66.  
  67. /* CREATION DATE
  68.  
  69. /*    Wed Jan  1 19:01:13 GMT+1:00 1986
  70.  
  71. /* LAST MODIFICATION
  72.  
  73. /*    90/01/22 13:57:04
  74.  
  75. /* VERSION/RELEASE
  76.  
  77. /*    2.1
  78.  
  79. /*--*/
  80.  
  81.  
  82.  
  83. #include "termcap.h"
  84.  
  85.  
  86.  
  87. tgetent(bp, name)
  88.  
  89. char   *bp,
  90.  
  91.        *name;
  92.  
  93. {
  94.  
  95.     return (1);
  96.  
  97. }
  98.  
  99.