Go to the first, previous, next, last section, table of contents.


intChars4

Function: intChars4 { int -> char0 char1 char2 char3 }
file: job.t
package: muf
status: alpha

The intChars4 function converts an integer to four characters, int>>24 & 0xFF, int>>16 & 0xFF, int>>8 & 0xFF, int & 0xFF. This is intended primarily for converting integers into a form suitable to send through a TCP or UDP network connection.


Go to the first, previous, next, last section, table of contents.