posix_ansi_iso_c
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
posix_ansi_iso_c [2024-05-13] – hanez | posix_ansi_iso_c [2025-03-18] (current) – [MFC] fnord | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== POSIX / ANSI / ISO C ====== | ====== POSIX / ANSI / ISO C ====== | ||
- | ===== [[http:// | + | ===== ANSI / ISO C ===== |
ANSI C / ISO C are standards designed to support an incredibly broad array of different systems and allow compiling legacy code from ages past. We can call this " | ANSI C / ISO C are standards designed to support an incredibly broad array of different systems and allow compiling legacy code from ages past. We can call this " | ||
Line 7: | Line 7: | ||
Half of the C standard refers to the language itself, which includes specific guarantees about what types are available, what syntax you can use, et cetera. These guarantees are sometimes too broad to work with comfortably. For example, in standard C, it is guaranteed that at least the following types exist: | Half of the C standard refers to the language itself, which includes specific guarantees about what types are available, what syntax you can use, et cetera. These guarantees are sometimes too broad to work with comfortably. For example, in standard C, it is guaranteed that at least the following types exist: | ||
- | | + | |
- | * int, which represents at least -32767..+32767 | + | |
- | * long int, which represents at least -2147483647..+2147483647 | + | |
Each type in the list must be wider than the last, but there is a lot of leeway for systems to choose different sizes. For example, on a DSP or an old supercomputer all of the types might be exactly the same size. There is also no guarantee that a byte has 8 bits (maybe it has more than 8 bits). | Each type in the list must be wider than the last, but there is a lot of leeway for systems to choose different sizes. For example, on a DSP or an old supercomputer all of the types might be exactly the same size. There is also no guarantee that a byte has 8 bits (maybe it has more than 8 bits). | ||
Line 19: | Line 19: | ||
There are several versions of standard C. The most common ones are C89/C90, C99, and C11. It is not uncommon to find systems which only support C90 (for example, MSVC). | There are several versions of standard C. The most common ones are C89/C90, C99, and C11. It is not uncommon to find systems which only support C90 (for example, MSVC). | ||
- | ===== [[http:// | + | [[http:// |
+ | |||
+ | ===== POSIX ===== | ||
POSIX is a much larger and more comprehensive standard which includes standard C as a part of it. POSIX also specifies parts of the operating system. Because POSIX is standardized, | POSIX is a much larger and more comprehensive standard which includes standard C as a part of it. POSIX also specifies parts of the operating system. Because POSIX is standardized, | ||
Line 41: | Line 43: | ||
There are several versions of POSIX. | There are several versions of POSIX. | ||
- | ===== [[http:// | + | [[http:// |
+ | |||
+ | ===== GLibc ===== | ||
GLibc is the GNU C library. It implements the standard C library, POSIX extensions to the C library, and some extra functionality. GLibc is not standardized and there is only one implementation. | GLibc is the GNU C library. It implements the standard C library, POSIX extensions to the C library, and some extra functionality. GLibc is not standardized and there is only one implementation. | ||
Line 49: | Line 53: | ||
Programs that use GLibc extensions are not generally portable, although certain extensions are also available on BSD systems. | Programs that use GLibc extensions are not generally portable, although certain extensions are also available on BSD systems. | ||
- | ===== [[http:// | + | [[http:// |
+ | |||
+ | ===== Win32 ===== | ||
Win32 is an API specific to Windows. The API provides functions not available in standard C, such as functions for creating a graphical user interface. Win32 is not standardized and there are only two implementations (Windows and WINE). Win32 provides a large set of interfaces, such as: | Win32 is an API specific to Windows. The API provides functions not available in standard C, such as functions for creating a graphical user interface. Win32 is not standardized and there are only two implementations (Windows and WINE). Win32 provides a large set of interfaces, such as: | ||
Line 62: | Line 68: | ||
Programs written for Win32 will generally only run on Windows and possibly WINE. | Programs written for Win32 will generally only run on Windows and possibly WINE. | ||
- | ===== [[http:// | + | [[http:// |
+ | |||
+ | ==== MFC ==== | ||
MFC is a library provided by Microsoft which makes it easier to write Win32 applications. It is effectively obsolete and should not be used for new projects. MFC is not standardized and there is only one implementation. | MFC is a library provided by Microsoft which makes it easier to write Win32 applications. It is effectively obsolete and should not be used for new projects. MFC is not standardized and there is only one implementation. | ||
+ | |||
+ | [[http:// | ||
Source: [[https:// | Source: [[https:// |
posix_ansi_iso_c.1715641967.txt.gz · Last modified: 2024-05-13 by hanez