C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Port I/O Functions
 Description Example                     Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
  Include:  <conio.h>
 
  Syntax:   int _inp( unsigned port );
            unsigned _inpw( unsigned port );
 
            int _outp( unsigned port, int databyte );
            unsigned _outpw( unsigned port, unsigned dataword );
 
  Returns:  (_inp) the byte read from port.
            (_inpw) the word that was read.
            (_outp) the byte output.
            (_outpw) the word output.
                                    -♦-