test public

Dependencies:   HttpServer_snapshot_mbed-os

Committer:
anhtran
Date:
Fri Oct 18 03:09:43 2019 +0000
Revision:
0:e9fd5575b10e
abc

Who changed what in which revision?

UserRevisionLine numberNew contents of line
anhtran 0:e9fd5575b10e 1 /* mbed Microcontroller Library
anhtran 0:e9fd5575b10e 2 * Copyright (c) 2006-2013 ARM Limited
anhtran 0:e9fd5575b10e 3 *
anhtran 0:e9fd5575b10e 4 * Licensed under the Apache License, Version 2.0 (the "License");
anhtran 0:e9fd5575b10e 5 * you may not use this file except in compliance with the License.
anhtran 0:e9fd5575b10e 6 * You may obtain a copy of the License at
anhtran 0:e9fd5575b10e 7 *
anhtran 0:e9fd5575b10e 8 * http://www.apache.org/licenses/LICENSE-2.0
anhtran 0:e9fd5575b10e 9 *
anhtran 0:e9fd5575b10e 10 * Unless required by applicable law or agreed to in writing, software
anhtran 0:e9fd5575b10e 11 * distributed under the License is distributed on an "AS IS" BASIS,
anhtran 0:e9fd5575b10e 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
anhtran 0:e9fd5575b10e 13 * See the License for the specific language governing permissions and
anhtran 0:e9fd5575b10e 14 * limitations under the License.
anhtran 0:e9fd5575b10e 15 */
anhtran 0:e9fd5575b10e 16 #ifndef MBED_PARSE_PINS_H
anhtran 0:e9fd5575b10e 17 #define MBED_PARSE_PINS_H
anhtran 0:e9fd5575b10e 18
anhtran 0:e9fd5575b10e 19 #include "PinNames.h"
anhtran 0:e9fd5575b10e 20
anhtran 0:e9fd5575b10e 21 namespace mbed {
anhtran 0:e9fd5575b10e 22
anhtran 0:e9fd5575b10e 23 PinName parse_pins(const char *str);
anhtran 0:e9fd5575b10e 24
anhtran 0:e9fd5575b10e 25 }
anhtran 0:e9fd5575b10e 26
anhtran 0:e9fd5575b10e 27 #endif
anhtran 0:e9fd5575b10e 28