Is there a way to ignorer arguments and parameters of functin if it in one line or multy line.
EX:
uint8_t BufferPutUint8(OUT uint8_t* puBuffOut,
IN uint8_t uVal);
I don’t want to change the uint8_t BufferPutUint8() function like this.
uint8_t BufferPutUint8(OUT uint8_t* puBuffOut,IN uint8_t uVal);
and the reverse.
EX:
inline bool BitSetIsSetUInt8(IN uint8_t uBitSet, IN uint8_t uBitMask)
{
return (uBitSet & uBitMask) == uBitMask;
}
I don’t want to change the inline bool BitSetIsSetUInt8() function like this.
inline bool BitSetIsSetUInt8(IN uint8_t uBitSet,
IN uint8_t uBitMask)
{
return (uBitSet & uBitMask) == uBitMask;
}
New contributor
monder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.