OurBigBook About$ Donate
 Sign in+ Sign up
by Ciro Santilli (@cirosantilli, 37)

C POSIX library

 ... Computer Software Programming language List of programming languages C (programming language) C library
 0 By others on same topic  0 Discussions  Updated 2025-05-26  +Created 1970-01-01  See my version
Tags: POSIX
Quick overview at stackoverflow.com/questions/1780599/what-is-the-meaning-of-posix/31865755#31865755
Exmples under c/posix:
  • c/posix/signal_return.c: stackoverflow.com/questions/37063212/where-does-signal-handler-return-back-to
  • c/posix/inet/pton.c: inet_pton demo. Adapted from man inet_pton on Ubuntu 23.04. Usage:
    ./pton.out 192.187.1.42
    Output:
    0xc0bb012a
    So we see that the strings was converted to an integer, e.g.:
    • 0xc0 = 192
    • 0xbb = 187
    • 0x01 = 1
    • 0x2a = 42
    See also: stackoverflow.com/questions/1680622/ip-address-to-integer-c/76520978#76520978
  • c/posix/inet/ntop.c: inet_ntop demo. Adapted from man inet_pton on Ubuntu 23.04. Usage:
    ./ntop.out 0x01021AA0
    Output:
    ./ntop.out 0x01021AA0

 Ancestors (10)

  1. C library
  2. C (programming language)
  3. List of programming languages
  4. Programming language
  5. Software
  6. Computer
  7. Information technology
  8. Area of technology
  9. Technology
  10.  Home

 View article source

 Discussion (0)

+ New discussion

There are no discussions about this article yet.

 Articles by others on the same topic (0)

There are currently no matching articles.
  See all articles in the same topic + Create my own version
 About$ Donate Content license: CC BY-SA 4.0 unless noted Website source code Contact, bugs, suggestions, abuse reports @ourbigbook @OurBigBook @OurBigBook