aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pyre2/py3/src/_re2macros.h
blob: b9ac82af6bc0197f83f69a60574da0f469f35562 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __RE2MACROS_H
#define __RE2MACROS_H

#include <stdio.h>
#include "re2/stringpiece.h"

static inline re2::StringPiece * new_StringPiece_array(int n)
{
    re2::StringPiece * sp = new re2::StringPiece[n];
    return sp;
}

#endif