Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
a-zakir committed Nov 17, 2023
1 parent fc453c6 commit 0ac6c16
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/SIMPLEXE/spx_simplexe.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,14 @@ return;

PROBLEME_SPX * SPX_Simplexe( PROBLEME_SIMPLEXE * Probleme , PROBLEME_SPX * Spx )
{

callback_function call_back = (callback_function)Probleme->callback;
const char *welcome = "Sirius Welcome you!\n";
call_back(Probleme->caller, welcome, 4, SIRIUS_INFO);
// TODO else default
if (call_back)
{
call_back(Probleme->caller, welcome, 4, SIRIUS_INFO);
}
void *Tas;

if (Spx == NULL)
Expand Down

0 comments on commit 0ac6c16

Please sign in to comment.