[F] Fixed c++ support

This commit is contained in:
seleznevae
2018-03-18 12:17:33 +03:00
parent 5ad1ede916
commit 757502a4b8
7 changed files with 101 additions and 68 deletions

View File

@@ -9,7 +9,6 @@
/*****************************************************************************
* CELL
* ***************************************************************************/
fort_cell_t * create_cell();

View File

@@ -6,6 +6,7 @@
#include <string.h>
#include <assert.h>
#include <stdio.h>
#include "fort.h"
#define FORT_COL_SEPARATOR '|'

View File

@@ -5,18 +5,18 @@
#include <stdint.h>
#include <limits.h>
enum TextAlignment
{
LeftAligned,
CenterAligned,
RightAligned
};
//enum TextAlignment
//{
// LeftAligned,
// CenterAligned,
// RightAligned
//};
enum RowType
{
Common,
Header
};
//enum RowType
//{
// Common,
// Header
//};
struct fort_column_options

View File

@@ -4,6 +4,7 @@
#include "fort_impl.h"
#include "fort.h"
#include "stdarg.h"
#include "options.h"
struct fort_row;
typedef struct fort_row fort_row_t;