Subversion Repositories SvarDOS

Rev

Rev 1371 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1371 Rev 1783
Line 1... Line 1...
1
/* This file is part of the svarlang project and is published under the terms
1
/* This file is part of the svarlang project and is published under the terms
2
 * of the MIT license.
2
 * of the MIT license.
3
 *
3
 *
4
 * Copyright (C) 2021-2023 Mateusz Viste
4
 * Copyright (C) 2021-2024 Mateusz Viste
5
 *
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
 * copy of this software and associated documentation files (the "Software"),
7
 * copy of this software and associated documentation files (the "Software"),
8
 * to deal in the Software without restriction, including without limitation
8
 * to deal in the Software without restriction, including without limitation
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
Line 24... Line 24...
24
 
24
 
25
#ifndef SVARLANG_H
25
#ifndef SVARLANG_H
26
#define SVARLANG_H
26
#define SVARLANG_H
27
 
27
 
28
/* library version */
28
/* library version */
29
#define SVARLANGVER "20230730"
29
#define SVARLANGVER "20240227"
30
 
30
 
31
/* returns a pointer to a string with the SvarLANG's library version,
31
/* returns a pointer to a string with the SvarLANG's library version,
32
 * independently of the SVARLANGVER string above. */
32
 * independently of the SVARLANGVER string above. */
33
const char *svarlang_getver(void);
33
const char *svarlang_getver(void);
34
 
34