}
- memset (temp, 0x20, 16);
+ memset (temp, ' ', 16);
temp[0] = '0';
if ((p = strrchr (fname, '/'))) {
memcpy (header.name, name, len);
while (len < 16) {
- header.name[len++] = 0x20;
+ header.name[len++] = ' ';
}
memcpy (header.mtime, temp, 12);
bytes = ftell (tfp);
len = sprintf (temp, "%ld", bytes);
- temp[len] = 0x20;
+ temp[len] = ' ';
memcpy (header.size, temp, 10);
- header.endsig[0] = 0x60;
- header.endsig[1] = 0x0A;
+ header.endsig[0] = '`';
+ header.endsig[1] = '\n';
need_newline = (bytes % 2);
if (need_newline) {
- temp[0] = 0x0A;
+ temp[0] = '\n';
if (fwrite (temp, 1, 1, ofp) != 1) {
uint32_t conv_dec (char *str, int32_t max) {
+ char ch;
uint32_t value = 0;
- while (*str != ' ' && max-- > 0) {
+ while ((ch = *str)) {
+ if (ch == ' ' || max == 0) {
+ break;
+ }
+
value *= 10;
- value += *str++ - '0';
+
+ value += (ch - '0');
+ str++;
}
char temp[17], *name, *p, *contents;
long bytes, len, read;
- if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+ if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
fclose (tfp);
}
- if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+ if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
fclose (tfp);
}
- memset (temp, 0x20, 16);
+ memset (temp, ' ', 16);
temp[0] = '0';
len = 1;
memcpy (header.name, "/", len);
while (len < 16) {
- header.name[len++] = 0x20;
+ header.name[len++] = ' ';
}
memcpy (header.mtime, temp, 12);
memcpy (header.mode, temp, 8);
len = sprintf (temp, "%ld", bytes + 4);
- temp[len] = 0x20;
+ temp[len] = ' ';
memcpy (header.size, temp, 10);
- header.endsig[0] = 0x60;
- header.endsig[1] = 0x0A;
+ header.endsig[0] = '`';
+ header.endsig[1] = '\n';
if (fwrite (&header, sizeof (header), 1, tfp) != 1) {
char temp[17], *name, *p, *contents;
long bytes, len, read;
- if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+ if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
fclose (tfp);