()
| 105 | } |
| 106 | |
| 107 | func (o *output) c() { |
| 108 | /* |
| 109 | unsigned char buffer[] = { |
| 110 | 0x48, 0x65, 0x6C, 0x6C, 0x6F, |
| 111 | }; |
| 112 | */ |
| 113 | fmt.Print("unsigned char buffer[] = {\n") |
| 114 | |
| 115 | o.bytesArray(4, 8) |
| 116 | |
| 117 | fmt.Println(",\n};") |
| 118 | fmt.Println() |
| 119 | fmt.Printf("unsigned long long bufferSize = %d;\n", len(o.data)) |
| 120 | } |
| 121 | |
| 122 | func (o *output) golang() { |
| 123 | /* |