wiki.xw3.org

Welcome to the xw3 Wiki! Powered by hanez

User Tools

Site Tools


posix_ansi_iso_c

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
posix_ansi_iso_c [2024-05-13] – ↷ Page name changed from posix to posix_ansi_iso_c hanezposix_ansi_iso_c [2025-03-18] (current) – [MFC] fnord
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:
  
- Unordered List Itemshort int, which represents at least -32767..+32767 + <color #ed1c24>short int</color>, which represents at least -32767..+32767 
- * int, which represents at least -32767..+32767 + <color #ed1c24>int</color>, which represents at least -32767..+32767 
- * long int, which represents at least -2147483647..+2147483647+ <color #ed1c24>long int</color>, 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 18: Line 18:
  
 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://en.wikipedia.org/wiki/ANSI_C]]
  
 ===== POSIX ===== ===== POSIX =====
Line 40: Line 42:
  
 There are several versions of POSIX. There are several versions of POSIX.
 +
 +[[http://en.wikipedia.org/wiki/POSIX]]
  
 ===== GLibc ===== ===== GLibc =====
Line 48: Line 52:
  
 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://en.wikipedia.org/wiki/GNU_C_Library]]
  
 ===== Win32 ===== ===== Win32 =====
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.
  
-===== MFC =====+[[http://en.wikipedia.org/wiki/Windows_API]] 
 + 
 +==== 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://en.wikipedia.org/wiki/Microsoft_Foundation_Class_Library]]
  
 Source: [[https://stackoverflow.com/questions/19697152/what-is-posix-any-other-interface-standards-which-can-replace-it]] Source: [[https://stackoverflow.com/questions/19697152/what-is-posix-any-other-interface-standards-which-can-replace-it]]
posix_ansi_iso_c.1715641817.txt.gz · Last modified: 2024-05-13 by hanez