Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
Lexer
/
digraph.c
blob: 9683ee4f9981de38f2e1bfefb24909ac0374b17c [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify < %s
%:
include
<stdio.h>
%:
ifndef BUFSIZE
%:
define BUFSIZE
512
%:
endif
void
copy
(
char
d
<::>,
const
char
s
<::>,
int
len
)
<%
while
(
len
--
>=
0
)
<%
d
<:
len
:>
=
s
<:
len
:>;
%>
%>