home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume10 / pcmail2 / part01 / termcap / tgetent.c < prev    next >
C/C++ Source or Header  |  1990-01-24  |  1KB  |  50 lines

  1. /*++
  2. /* NAME
  3. /*    tgetent 3
  4. /* SUMMARY
  5. /*    extract terminal entry from capability database
  6. /* PROJECT
  7. /*    ms-dos/unix compatibility
  8. /* PACKAGE
  9. /*    termcap
  10. /* SYNOPSIS
  11. /*    tgetent(bp,name)
  12. /*    char *bp,*name;
  13. /* DESCRIPTION
  14. /*    tgetent simulates its UNIX counterpart.
  15. /*    Its purpose is to extract from the capability database all
  16. /*    information for a specific terminal.
  17. /*
  18. /*    name should point to a string with the terminal name (usually
  19. /*    taken from the environment with getenv(3)).
  20. /*    bp should point to a 1024-character buffer for storage of
  21. /*    terminal information extracted from the capability database.
  22. /*
  23. /*    Since the capabilities of the ms-dos console are described by a
  24. /*    static data structure, tgetent(3) is a dummy function.
  25. /* SEE ALSO
  26. /*    termcap(3), Berkeley extensions to UNIX.
  27. /* FILES
  28. /*    ANSI.SYS, ibm pc console driver.
  29. /* AUTHOR(S)
  30. /*    W.Z. Venema
  31. /*    Eindhoven University of Technology
  32. /*    Department of Mathematics and Computer Science
  33. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  34. /* CREATION DATE
  35. /*    Wed Jan  1 19:01:13 GMT+1:00 1986
  36. /* LAST MODIFICATION
  37. /*    90/01/22 13:57:04
  38. /* VERSION/RELEASE
  39. /*    2.1
  40. /*--*/
  41.  
  42. #include "termcap.h"
  43.  
  44. tgetent(bp, name)
  45. char   *bp,
  46.        *name;
  47. {
  48.     return (1);
  49. }
  50.