print.c 225 B

12345678910111213
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #include "stdio.h"
  6. #include "string.h"
  7. void
  8. print_line(char *str)
  9. {
  10. printf("%s\n", str);
  11. }