diff --git a/examples/examples.py b/examples/examples.py
index 2ffdce3fa3a4ccfdddd8ef274a83be67ed5503c7..4ad9b15cdae1c8c8fecc368cd137075c65cdf0a0 100644
--- a/examples/examples.py
+++ b/examples/examples.py
@@ -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)