Change jerry_debugger_send_{output,log} to take const jerry_char_t * (#2495)

... instead of `jerry_char_t []`, which is not used anywhere else
in the API.

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss
2018-08-29 08:53:11 +02:00
committed by yichoi
parent fa5c361774
commit b4dc6b0cbe
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -375,7 +375,7 @@ Sends the program's output to the debugger client.
```c
void
jerry_debugger_send_output (jerry_char_t buffer[], jerry_size_t string_size)
jerry_debugger_send_output (const jerry_char_t *buffer, jerry_size_t string_size)
```
**Example**
@@ -412,7 +412,7 @@ Sends the program's log to the debugger client.
```c
void
jerry_debugger_send_log (jerry_log_level_t level, jerry_char_t buffer[], jerry_size_t string_size)
jerry_debugger_send_log (jerry_log_level_t level, const jerry_char_t *buffer, jerry_size_t string_size)
```
**Example**