view examples/myfunc.c @ 17961:774409d18794

* be_by.ts: new translations by Mihas and updated to new strings
author Torsten <ttl@justmail.de>
date Tue, 19 Nov 2013 21:40:04 +0100
parents 224e76250443
children
line wrap: on
line source

#include "mex.h"

void
mexFunction (int nlhs, mxArray *plhs[],
             int nrhs, const mxArray *prhs[])
{
  const char *nm;

  nm = mexFunctionName ();
  mexPrintf ("You called function: %s\n", nm);
  if (strcmp (nm, "myfunc") == 0)
    mexPrintf ("This is the principal function\n", nm);

  return;
}