Home | History | Annotate | Download | only in cyclades-z

Lines Matching refs:fprintf

106 	fprintf(out_file, "/*\t$""NetBSD""$\t*/\n\n");
107 fprintf(out_file,
114 fprintf(out_file, "#ifndef _%s_\n", include_name);
115 fprintf(out_file, "#define\t_%s_\n\n", include_name);
117 fprintf(out_file, "static const uint8_t cycladesz_firmware[] = {\n");
122 fprintf(out_file, "\t");
125 fprintf(out_file, "0x%02x,", '_');
127 fprintf(out_file, "0x%02x,", *in_ptr);
134 fprintf(out_file, "\t/* ");
139 fprintf(out_file, " */");
141 fprintf(out_file, "\n");
144 fprintf(out_file, " ");
147 fprintf(out_file, "\n};\n\n");
149 fprintf(out_file, "#endif /* _%s_ */\n", include_name);
157 fprintf(stderr, "usage: %s infile outfile\n", getprogname());