MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ummax

Function ummax

freebsd/sys/libkern.h:103–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101static __inline u_long ulmax(u_long a, u_long b) { return (a > b ? a : b); }
102static __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
103static __inline __uintmax_t ummax(__uintmax_t a, __uintmax_t b)
104{
105
106 return (a > b ? a : b);
107}
108static __inline __uintmax_t ummin(__uintmax_t a, __uintmax_t b)
109{
110

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected