#ifndef STRINGS_H #define STRINGS_H #include void uint32_to_bits(uint32_t number, char *buf) { for (int i = 0; i < 32; i++) buf[i] = ((number >> (32 - i - 1)) & 1) ? '1' : '0'; buf[32] = '\0'; } #endif // STRINGS_H ed' href='https://git.koszko.org/guix/atom/README?h=koszko' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Expand)Author
2021-05-20The #guix channel is hosted by Libera Chat....Tobias Geerinckx-Rice
2020-10-23doc: Update README....Maxim Cournoyer
2020-10-22README: Refer to the manual for building from Git....Maxim Cournoyer
2020-06-02doc: Update README to refer to the manual....Ludovic Courtès
2019-11-09doc: Mention value /var to localstatedir option....zimoun
2019-09-04doc: Update 'README'....Ludovic Courtès