std.h: Don't use `extern` in function prototypes
[sunny256-utils.git] / ascii
blob61f451810030f9086f86cc42d9b47b6a838ef307
1 #!/usr/bin/env perl
3 # ascii
4 # File ID: 1c7b6196-5d37-11df-b1f7-90e6ba3022ac
5 # Avansert esse
7 use strict;
8 use warnings;
10 binmode(STDOUT, ":utf8");
12 for (32..255) {
13 printf("%03u 0x%02x %c\n", $_, $_, $_);