본문 바로가기
프로그래머의 길/C & C++

C 함수 [o]

by 제이콥케이 2007. 3. 21.
반응형

 [o]
     24.1.265. _open()
     24.1.266. open()
     24.1.267. outport()
     24.1.268. outportb()
     24.1.269. outtext()
     24.1.270. outtextxy()




24.1.265. _open()

[형식]
#include <fcntl.h>
#include <io.h>
int _open(filename, oflags);

[매개변수]
const char *filename : 오픈할 파일 이름.
int oflags : 파일 모드.

[되돌림값]
성공하면 파일 핸들러를, 오류가 발생하면 -1을 돌려준다.

[설명] 입출력을 위해 파일을 오픈한다.


24.1.266. open()

[형식]
#include <fcntl.h>
#include <sys\stat.h>
#include <io.h>
int open(pathname, access, [.mode]);

[매개변수]
const char *pathname : 오픈할 파일 이름.
int access : 액세스 방식.
unsigned mode : 파일 모드.

[되돌림값]
성공하면 파일 핸들러를, 오류가 발생하면 -1을 돌려준다.

[설명] 파일을 지정한 모드와 속성으로 연다.


24.1.267. outport()

[형식]
#include <dos.h>
void far outport(portid, value);

[매개변수]
int portid : 포트 번호.
int value : 출력하는 값.

[되돌림값]
없음.

[설명] 입출력 포트로 한 낱말(워드)를 출력한다.


24.1.268. outportb()

[형식]
#include <dos.h>
void far outportb(portid, value);

[매개변수]
int portid : 포트 번호.
unsigned char value : 출력하는 값.

[되돌림값]
없음.

[설명] 입출력 포트로 1 바이트를 출력한다.


24.1.269. outtext()

[형식]
#include <graphics.h>
void far outtext(*textstring);

[매개변수]
char far *textstring : 문자열의 포인터.

[되돌림값]
없음.

[설명] 현재 커서 위치에 문자열을 출력한다.


24.1.270. outtextxy()

[형식]
#include <graphics.h>
void far outtextxy(x, y, *textstring);

[매개변수]
int x : x 좌표.
int y : y 좌표.
char far *textstring : 문자열 포인터.

[되돌림값]
없음.

[설명] (x, y) 위치에 문자열을 출력한다.

반응형

'프로그래머의 길 > C & C++' 카테고리의 다른 글

C 함수 [q]  (0) 2007.03.21
C 함수 [p]  (0) 2007.03.21
C 함수 [n]  (0) 2007.03.21
C 함수 [m]  (0) 2007.03.21
C 함수 [l]  (0) 2007.03.21