Commit ec5b98d8 authored by David Hendriks's avatar David Hendriks
Browse files

updated examples

parent 8fb69911
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ import sys

from binarycpython import _binary_c_bindings

from binarycpython.utils.functions import parse_output
from binarycpython.utils.functions import example_parse_output
from binarycpython.utils.custom_logging_functions import (
    autogen_C_logging_code,
    binary_c_log_code,
@@ -74,8 +74,8 @@ def run_example_binary_with_run_system():
    # print(output)

    # Catch results that start with a given header. (Mind that binary_c has to be configured to print them if your not using a custom logging function)
    result_example_header_1 = parse_output(output, selected_header="example_header_1")
    result_example_header_2 = parse_output(output, selected_header="example_header_2")
    result_example_header_1 = example_parse_output(output, selected_header="example_header_1")
    result_example_header_2 = example_parse_output(output, selected_header="example_header_2")

    # print(result_example_header_1)