Ignore:
Timestamp:
03/07/09 12:42:23 (15 years ago)
Author:
r2d
Message:

mpccut should now be more resilient to errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcdec/internal.h

    r431 r436  
    8484};
    8585
     86/**
     87 * checks if a block key is valid
     88 * @param key the two caracters key to check
     89 * @return MPC_STATUS_INVALIDSV if the key is invalid, MPC_STATUS_OK else
     90 */
     91static mpc_inline mpc_status mpc_check_key(char * key)
     92{
     93        if (key[0] < 65 || key[0] > 90 || key[1] < 65 || key[1] > 90)
     94                return MPC_STATUS_INVALIDSV;
     95        return MPC_STATUS_OK;
     96}
     97
    8698/// helper functions used by multiple files
    8799mpc_uint32_t mpc_random_int(mpc_decoder *d); // in synth_filter.c
Note: See TracChangeset for help on using the changeset viewer.