163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
[entry generalPurposeBitFlag]];
[of_stdout writeString: @"\t"];
[of_stdout writeLine: OF_LOCALIZED(
@"list_general_purpose_bit_flag",
@"General purpose bit flag: %[gpbf]",
@"gpbf", GPBF)];
[of_stdout writeString: @"\t"];
[of_stdout writeLine: OF_LOCALIZED(
@"list_extra_field",
@"Extra field: %[extra]",
@"extra", [entry extraField])];
}
if ([[entry fileComment] length] > 0) {
[of_stdout writeString: @"\t"];
[of_stdout writeLine: OF_LOCALIZED(
@"list_comment",
@"Comment: %[comment]",
|
>
>
|
|
|
|
|
>
|
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
[entry generalPurposeBitFlag]];
[of_stdout writeString: @"\t"];
[of_stdout writeLine: OF_LOCALIZED(
@"list_general_purpose_bit_flag",
@"General purpose bit flag: %[gpbf]",
@"gpbf", GPBF)];
if ([entry extraField] != nil) {
[of_stdout writeString: @"\t"];
[of_stdout writeLine: OF_LOCALIZED(
@"list_extra_field",
@"Extra field: %[extra]",
@"extra", [entry extraField])];
}
}
if ([[entry fileComment] length] > 0) {
[of_stdout writeString: @"\t"];
[of_stdout writeLine: OF_LOCALIZED(
@"list_comment",
@"Comment: %[comment]",
|