Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

492
Views
htonl() vs __builtin_bswap32()

__builtin_bswap32() is used to reverse bytes (it's used for littel/big endian issues (from gcc)).

htonl() is used to reverse bytes too (conversion from host to network).

I checked both functions and they returns the same result.

Are there some one who can confirm that both functions do the same thing? (standard refences are appreciated)

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

I disagree with your statement that htonl() is used to reverse byte order. It is used to convert from host to network byte order. Depending on the byte order of the host, that may, or may not, result in byte order being reversed.

I suggest that you use the function that expresses the correct semantic intent:

  • If you wish to convert from host to network byte order, use htonl().
  • If you wish to reverse byte order, use __builtin_bswap32().
over 4 years ago · Santiago Trujillo Report

0

Just look at source code : (example from glib 2.18)

#undef htonl
#undef ntohl

uint32_t
htonl (x)
uint32_t x;
{
    #if BYTE_ORDER == BIG_ENDIAN
       return x;
    #elif BYTE_ORDER == LITTLE_ENDIAN
       return __bswap_32 (x);
    #else
       # error "What kind of system is this?"
    #endif
}
weak_alias (htonl, ntohl)

And : #define __bswap_32(x) ((unsigned int)__builtin_bswap32(x))

Source here : http://fossies.org/dox/glibc-2.18/htonl_8c_source.html

As you can see, htonl only call __builtin_bswap32 on little-endian machines.

over 4 years ago · Santiago Trujillo Report

0

bswap_32 always reverse byte order, on any architecture.

htonl/ntohl reverses byteorder on little endian machines only.

For example, on PowerPC (big endian), ntohl/htonl just returns input value, no more, while bswap32 anyway will reverse byte order.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!