As I was working on some routines & C preprocessor macros for dealing with
fixed point numbers , I had the need to convert from one format to another. So, this is what I came up with initially:
b = fixed_10_6_to_10_22(a);
But, it's so long, and typing all those underscores is tedious. So, I think I'll use this instead:
b = f10621022(a);It's
(
Read more... )