Zilog ZUSBOPTS Manual de usuario Pagina 468

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 520
  • Tabla de contenidos
  • SOLUCIÓN DE PROBLEMAS
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 467
Standard Functions UM017105-0511
440
Zilog Developer Studio II – ZNEO™
User Manual
setjmp
Saves its calling environment in its jmp_buf argument, for later use by the longjmp
function.
Synopsis
#include<setjmp.h>
int setjmp(jmp_buf env);
Returns
If the return is from a direct invocation, the setjmp function returns the value zero. If the
return is from a call to the
longjmp function, the setjmp function returns a nonzero
value.
Example
int i;
jmp_buf env;
i=setjmp(env);
longjmp(env, i);
sin, sinf
Computes the sine of x (measured in radians). A large magnitude argument can yield a
result with little or no significance.
Synopsis
#include <math.h>
double sin(double x);
float sinf(float x);
Returns
The sine value.
Example
double x=1.24;
double y;
y=sin(x);
Vista de pagina 467
1 2 ... 463 464 465 466 467 468 469 470 471 472 473 ... 519 520

Comentarios a estos manuales

Sin comentarios