aboutsummaryrefslogtreecommitdiff
path: root/src/lib/string/scanf.h
blob: 9cfa9cc6c117a94eadb3893d1eb3107f525686b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Copyright (c) 2003-2004, Roger Dingledine
 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 * Copyright (c) 2007-2018, The Tor Project, Inc. */
/* See LICENSE for licensing information */

#ifndef TOR_UTIL_SCANF_H
#define TOR_UTIL_SCANF_H

#include "orconfig.h"
#include "lib/cc/compat_compiler.h"

#include <stdarg.h>

int tor_vsscanf(const char *buf, const char *pattern, va_list ap) \
  CHECK_SCANF(2, 0);
int tor_sscanf(const char *buf, const char *pattern, ...)
  CHECK_SCANF(2, 3);

#endif /* !defined(TOR_UTIL_STRING_H) */