This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Created by easyaspi314. Released into the public domain. | |
// test:$ gcc -msse -DTEST change_case_simd.c && ./a.out | |
// > cl /EHsc /DTEST change_case_simd.c && .\change_case_simd.exe | |
#include <ctype.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#ifdef DEMONSTRATE_BASIC_ALGORITHM | |
#include <stdint.h> |