| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #include "bin/builtin.h" |
| 6 #include "bin/dartutils.h" |
| 7 #include "bin/thread.h" |
| 8 #include "bin/utils.h" |
| 9 |
| 10 #include "platform/globals.h" |
| 11 #include "platform/thread.h" |
| 12 #include "platform/utils.h" |
| 13 |
| 14 #include "include/dart_api.h" |
| 15 |
| 16 |
| 17 namespace dart { |
| 18 namespace bin { |
| 19 |
| 20 void FUNCTION_NAME(Stdin_ReadByte)(Dart_NativeArguments args) { |
| 21 Dart_EnterScope(); |
| 22 int c = getchar(); |
| 23 if (c == EOF) { |
| 24 c = -1; |
| 25 } |
| 26 Dart_SetReturnValue(args, Dart_NewInteger(c)); |
| 27 Dart_ExitScope(); |
| 28 } |
| 29 |
| 30 } // namespace bin |
| 31 } // namespace dart |
| OLD | NEW |