26 lines
579 B
C
26 lines
579 B
C
|
//---------------------------------------------------------------------------
|
||
|
#ifndef CheckOtherH
|
||
|
#define CheckOtherH
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
// Casting
|
||
|
void WarningOldStylePointerCast();
|
||
|
|
||
|
// Use standard functions instead
|
||
|
void WarningIsDigit();
|
||
|
|
||
|
// Redundant code
|
||
|
void WarningRedundantCode();
|
||
|
|
||
|
// Warning upon: if (condition);
|
||
|
void WarningIf();
|
||
|
|
||
|
// Using dangerous functions
|
||
|
void WarningDangerousFunctions();
|
||
|
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
#endif
|
||
|
|