LEFT | RIGHT |
(Both sides are equal) |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 /* | 5 /* |
6 * basic types | 6 * basic types |
7 */ | 7 */ |
8 typedef signed char int8; | 8 typedef signed char int8; |
9 typedef unsigned char uint8; | 9 typedef unsigned char uint8; |
10 typedef signed short int16; | 10 typedef signed short int16; |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 | 519 |
520 Hchan* makechan(Type*, uint32); | 520 Hchan* makechan(Type*, uint32); |
521 void chansend(Hchan*, void*, bool*); | 521 void chansend(Hchan*, void*, bool*); |
522 void chanrecv(Hchan*, void*, bool*); | 522 void chanrecv(Hchan*, void*, bool*); |
523 void chanclose(Hchan*); | 523 void chanclose(Hchan*); |
524 bool chanclosed(Hchan*); | 524 bool chanclosed(Hchan*); |
525 int32 chanlen(Hchan*); | 525 int32 chanlen(Hchan*); |
526 int32 chancap(Hchan*); | 526 int32 chancap(Hchan*); |
527 | 527 |
528 void ifaceE2I(struct InterfaceType*, Eface, Iface*); | 528 void ifaceE2I(struct InterfaceType*, Eface, Iface*); |
LEFT | RIGHT |