> 백엔드 개발 > C++ > 크로스 플랫폼 C 개발을 위해 Windows에서 누락된 'unistd.h' 기능을 어떻게 복구할 수 있습니까?

크로스 플랫폼 C 개발을 위해 Windows에서 누락된 'unistd.h' 기능을 어떻게 복구할 수 있습니까?

DDD
풀어 주다: 2024-12-06 05:58:12
원래의
456명이 탐색했습니다.

How Can I Recover the Missing `unistd.h` Functionality in Windows for Cross-Platform C   Development?

Windows 사용자를 위한 'unistd.h'의 잃어버린 요소 복구

크로스 플랫폼 코딩의 세계에서 플랫폼별 문제에 직면 장애물은 불가피하다. Unix에서 Windows로 코드를 포팅하는 프로그래머가 직면하는 일반적인 문제 중 하나는 Visual C에 'unistd.h'가 없다는 것입니다. 이 문제에 대한 해결책은 개별 기능을 대체하거나 보다 포괄적인 솔루션을 찾는 것입니다.

포괄적인 접근 방식을 원하는 사람들을 위해 Windows 호환 'unistd.h'를 만들기 위한 지속적인 커뮤니티 노력이 있습니다. Unix 대응의 필수 기능입니다. 다음 코드 조각은 출발점을 제공하며 사용자는 필요에 따라 기여하도록 권장됩니다.

#ifndef _UNISTD_H
#define _UNISTD_H    1

/* This is intended as a drop-in replacement for unistd.h on Windows.
 * Please add functionality as needed.
 * https://stackoverflow.com/a/826027/1202830
 */

#include <stdlib.h>
#include <io.h>
#include <getopt.h> /* getopt at: https://gist.github.com/ashelly/7776712 */
#include <process.h> /* for getpid() and the exec..() family */
#include <direct.h> /* for _getcwd() and _chdir() */

#define srandom srand
#define random rand

/* Values for the second argument to access.
   These may be OR'd together.  */
#define R_OK    4       /* Test for read permission.  */
#define W_OK    2       /* Test for write permission.  */
//#define   X_OK    1       /* execute permission - unsupported in windows*/
#define F_OK    0       /* Test for existence.  */

#define access _access
#define dup2 _dup2
#define execve _execve
#define ftruncate _chsize
#define unlink _unlink
#define fileno _fileno
#define getcwd _getcwd
#define chdir _chdir
#define isatty _isatty
#define lseek _lseek
/* read, write, and close are NOT being #defined here, because while there are file handle specific versions for Windows, they probably don't work for sockets. You need to look at your app and consider whether to call e.g. closesocket(). */

#ifdef _WIN64
#define ssize_t __int64
#else
#define ssize_t long
#endif

#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
/* should be in some equivalent to <sys/types.h> */
typedef __int8            int8_t;
typedef __int16           int16_t; 
typedef __int32           int32_t;
typedef __int64           int64_t;
typedef unsigned __int8   uint8_t;
typedef unsigned __int16  uint16_t;
typedef unsigned __int32  uint32_t;
typedef unsigned __int64  uint64_t;

#endif /* unistd.h  */
로그인 후 복사

그러나 보다 타겟화된 솔루션을 원하는 경우 누락된 기능을 개별적으로 해결할 수 있습니다. 예를 들어, 랜덤 함수는 'srand' 및 'rand'로, 'strcmp'는 '_stricmp'로 대체할 수 있습니다. 'getopt'의 경우 외부 라이브러리 'gist.github.com/ashelly/7776712'에서 구현을 제공합니다.

사용자 정의 'unistd.h'를 생성하는 것도 가능하지만 누군가가 이미 더 넓은 범위의 무거운 작업을 수행했는지 살펴보는 것이 좋습니다. 기능. 이 접근 방식은 커뮤니티의 노력을 활용하고 귀중한 개발 시간을 절약합니다.

위 내용은 크로스 플랫폼 C 개발을 위해 Windows에서 누락된 'unistd.h' 기능을 어떻게 복구할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿