mysh.c 343 B

1234567891011121314151617181920212223
  1. /*
  2. * File: mysh.c
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 31 octobre 2018, 12:43
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <unistd.h>
  10. #include <string.h>
  11. /*
  12. *
  13. */
  14. int main(int argc, char* argv[]) {
  15. char* a = "azerty\n";
  16. int tmp = write(1, a, strlen(a));
  17. printf("%d\n", tmp);
  18. return (EXIT_SUCCESS);
  19. }