gibbs212521 / HEC_2_senior_design

A senior design project to satisfy UT Tyler's Electrical Engineering Department's Senior Design Requirements.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

##################################################################################
#                                                                                #

#                                                                                #
##################################################################################



##################################################################################

                #########################################
                #                                       #
                #              Code Example             #
                #   C Code Snippet for Multi-Platform   #
                #           ---Adaptations---           #
                #                                       #
                #########################################

#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
   //define something for Windows (32-bit and 64-bit, this part is common)
   #ifdef _WIN64
      //define something for Windows (64-bit only)
   #else
      //define something for Windows (32-bit only)
   #endif
#elif __APPLE__
    #include <TargetConditionals.h>
    #if TARGET_IPHONE_SIMULATOR
         // iOS Simulator
    #elif TARGET_OS_IPHONE
        // iOS device
    #elif TARGET_OS_MAC
        // Other kinds of Mac OS
    #else
    #   error "Unknown Apple platform"
    #endif
#elif __linux__
    // linux
#elif __unix__ // all unices not caught above
    // Unix
#elif defined(_POSIX_VERSION)
    // POSIX
#else
#   error "Unknown compiler"
#endif

/* ********** can be auto-generated in python *********** */

##################################################################################

About

A senior design project to satisfy UT Tyler's Electrical Engineering Department's Senior Design Requirements.


Languages

Language:C 55.1%Language:TeX 43.0%Language:Batchfile 0.9%Language:Makefile 0.7%Language:C++ 0.3%