mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
16 lines
232 B
C++
16 lines
232 B
C++
|
/*
|
||
|
* Copyright (c) 2021, Rodrigo Tobar <rtobarc@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibLine/Span.h>
|
||
|
|
||
|
extern "C" {
|
||
|
int FUNCTION();
|
||
|
int FUNCTION()
|
||
|
{
|
||
|
return (int)Line::Span(0, 0).beginning();
|
||
|
}
|
||
|
}
|