| Index: runtime/bin/stdio.h
|
| diff --git a/runtime/bin/stdio.h b/runtime/bin/stdio.h
|
| index 56b591499b6e54cb825fe8809bf12a7e62d200af..e55c317aa1d75cb680f8cd522ee8ca8e442d6f4c 100644
|
| --- a/runtime/bin/stdio.h
|
| +++ b/runtime/bin/stdio.h
|
| @@ -27,6 +27,8 @@ class Stdin {
|
| static bool GetLineMode(bool* enabled);
|
| static bool SetLineMode(bool enabled);
|
|
|
| + static bool AnsiSupported(bool* supported);
|
| +
|
| private:
|
| DISALLOW_ALLOCATION();
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(Stdin);
|
| @@ -36,6 +38,7 @@ class Stdin {
|
| class Stdout {
|
| public:
|
| static bool GetTerminalSize(intptr_t fd, int size[2]);
|
| + static bool AnsiSupported(intptr_t fd, bool* supported);
|
|
|
| private:
|
| DISALLOW_ALLOCATION();
|
|
|