home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c081_11 / 9.ddi / CHAPXMPL.ZIP / TOGLFLAG.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-13  |  383 b   |  16 lines

  1. // Turbo Assembler    Copyright (c) 1988, 1991 By Borland International, Inc.
  2.  
  3. /* TOGLFLAG.C
  4.    Example of linking C++ and Turbo Assembler, and dealing with underscores.
  5. */
  6.  
  7. // From the Turbo Assembler Users Guide - Interfacing Turbo Assembler
  8. //                                         with Borland C++
  9.  
  10. extern int ToggleFlag();
  11. int Flag;
  12. main()
  13. {
  14.    ToggleFlag();
  15. }
  16.