fatal error: 'stype.h' not found #include в чем проблема?

при компиляции программы возникает ошибка

fatal error: 'stype.h' file not found

компилятор предлагает добавить #include <stype.h>, но это строка есть в коде

#include <cs50.h>
#include <stype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, string argv[])
{
    if(argc !=2)
    {
        printf("Usage: ./vigenere keyword\n");
        return 1;
    }
    else
    {
        for(int i = 0, strlen(argv[1]); i < n; i++)
        {
            if(!isalpha(argv[1][i]))
            {
                printf("Usage: ./vigenere keyword\n");
                return 1;
            }
        }
    }
    printf("plaintext: ");

    string k = arvg[1];
    int klen = strlen(k);
    string p = get_string("");
    printf("ciphertext: ");
    for(int i = 0, j = 0, n = strlen(p); i < n; i++)
    {
        int letterKey = tolower(k[j % klen]) - 'a';
        if(isupper(p[i]))
        {
            printf("%c", 'A' + (p[i] - 'A' + letterKey) % 26);
            j++;
        }
        else if(islower(p[i]))
        {
            printf("%c", 'a' + (p[i] - 'a' + letterKey) % 26);
            j++;
        }
        else
        {
            printf("%c", p[i]);
        }
    }
    printf("\n");
    return 0;
}

Ответы (0 шт):