Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postfix/src/util/   (Postfix Mailserver Version 3.11©)  Datei vom 11.9.2024 mit Größe 1 kB image not shown  

Quelle  sane_strtol.c

  Sprache: C
 

/*++
/* NAME
/* sane_strtol 3
/* SUMMARY
/* strtol() with mandatory errno reset
/* SYNOPSIS
/* #include <sane_strtol.h>
/*
/* long sane_strtol(
/* const char *start,
/* char **restrict end,
/* int base)
/*
/* unsigned long sane_strtoul(
/* const char *start,
/* char **restrict end,
/* int base)
/* DESCRIPTION
/* These functions are wrappers around the strtol() and strtoul()
/* standard library functions that reset errno first, so that a
/* prior ERANGE error won't cause false errors.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* Google, Inc.
/* 111 8th Avenue
/* New York, NY 10011, USA
/*--*/


 /*
  * System library.
  */

#include <sys_defs.h>
#include <stdlib.h>
#include <errno.h>

 /*
  * Utility library.
  */

#include <sane_strtol.h>

/* sane_strtol - strtol() with mandatory initialization */

long    sane_strtol(const char *start, char **end, int base)
{
    errno = 0;
    return (strtol(start, end, base));
}

/* sane_strtoul - strtoul() with mandatory initialization */

unsigned long sane_strtoul(const char *start, char **end, int base)
{
    errno = 0;
    return (strtoul(start, end, base));
}

Messung V0.5 in Prozent
C=74 H=93 G=83

¤ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet am  2026-08-09) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.