stevensteven
Programmer
This is probably a silly question but...
Is there some way to not return to a calling function?
For example:
File A Code (CANNOT BE MODIFIED)
FuncA ()
{
FuncB();
// More Code
// I do not want to execute
}
File B Code (CAN BE MODIFIED)
FuncB
{
return;
}
Is there some way to not return to a calling function?
For example:
File A Code (CANNOT BE MODIFIED)
FuncA ()
{
FuncB();
// More Code
// I do not want to execute
}
File B Code (CAN BE MODIFIED)
FuncB
{
return;
}