learning-cc4e

Solution to https://cc4e.com/. If you copy these you're not right in the head.
git clone https://kaka.farm/~git/learning-cc4e
Log | Files | Refs

main.c (180B)


      1 #include <stdio.h>
      2 #include <string.h>
      3 #include <ctype.h>
      4 int main() {
      5     char s1[] = "   Hello   World    ";
      6     void py_lstrip();
      7     py_lstrip(s1);
      8     printf("-%s-\n", s1);
      9 }