#include <stdio.h>

#include "strcat.h"

int main(int argc, char **argv) {
    // Tell gcc we're purposefully ignoring these
    (void) argc;
    (void) argv;

    char A[6 + 60] = "hello"; // ['h', 'e', 'l', 'l', 'o', '\0', ...]
    char B[84] = " this is a really long string that will break things if we don't have enough length";

    char *res = my_strcat(A, B);
    printf("%s\n", res);

    return 0;
}

