This documenta- tion describes the current state of development.
Note that interfaces and functionality may still change.

Prokee Modules:
  A
  B
  C
  D
  E
  F
  G
  I
  L
  M
  N
  O
  P
  R
  S
  T
  U
  W

     open all    |    close all

GUI Elements:
  B
  C
  I
  M
  P
  R
  S
  T

     open all    |    close all

GUI Interactions:
  B
  F
  H
  S

     open all    |    close all

GUI Layouts:
  L

     open all    |    close all

Games/Demos:
  M

     open all    |    close all

Third Party Libraries:
  P
  F
  Z

     open all    |    close all

Information about this Website / Informationen zu dieser Webseite:
In case of any questions, or comments, please feel free to contact me via email at apoll500@gmail.com.

Module strman [Version: v01]

 
Compile status: 
see log

Contents


Dependencies

For the Prokee Module Library

Dynamically Linked Modules: Statically Linked Modules: For the Standalone Executable

Source Files

  • strman/strman.h
  • interface/prokee/strman/prokee.h
  • interface/prokee/strman/prokee_c.h
  • interface/prokee/mlocal.h
  • strman/strman.cpp
  • interface/prokee/strman/prokee.cpp
  • interface/prokee/strman/prokee_c.cpp

Licenses


Exported Symbols

Pointers

char *(*strman_toupper_str)(char *str);
char *(*strman_tolower_str)(char *str);
int (*strman_compare_cistr)(const char *a,const char *b);
bool (*strman_isprefix_cistr)(const char *prefix,const char *str);
bool (*strman_issubstr_cistr)(const char *sub,const char *str);

Pointers (Templates)

T **(*strman_explode)(const T * sep,const T * str);
int (*strman_explode_count)(T ** explosion_parts);
void (*strman_explode_free)(T ** explosion_parts);
int (*strman_findItem)(const T * item,T ** explosion_parts);
T *(*strman_getItem)(int index,T ** explosion_parts);
T **(*strman_level2_create)(int ln,T *** itemlist);
void (*strman_level2_free)(T ** itemlist);
bool (*strman_level2_replaceItem_realloc)(T ** itemlist,const T * old_item,const T * new_item);
bool (*strman_level2_setItem_realloc)(int itemid,T ** itemlist,const T * item);
bool (*strman_level2_setItem_malloc)(int itemid,T ** itemlist,const T * item);
bool (*strman_level2_addItem_malloc)(T ** itemlist,const T * item);
bool (*strman_level2_freeItem)(int itemid,T ** itemlist);
bool (*strman_nvlist_create)(T *** names,T *** values,int ln);
void (*strman_nvlist_free)(T ** names,T ** values);
bool (*strman_nvlist_add)(T ** names,T ** values,const T * item_name);
bool (*strman_nvlist_add_if_missing)(T ** names,T ** values,const T * item_name);
bool (*strman_nvlist_remove)(T ** names,T ** values,const T * item_name);
T *(*strman_nvlist_get)(T ** names,T ** values,const T * item_name);
bool (*strman_nvlist_set)(T ** names,T ** values,const T * item_name,const T * item_value);
void (*strman_nvlist_print_all)(T ** names,T ** values);
T *(*strman_nullconcat)(T * a,T * b);
T *(*strman_nullcopy)(T * a,T * b);
T *(*strman_nullcopy_new)(T ** a,T * b);
bool (*strman_isprefix)(const T * a,const T * b);
bool (*strman_issuffix)(const T * a,const T * b);
bool (*strman_issubstr)(const T * a,const T * b);
unsigned int (*strman_findsubstr)(const T * a,const T * b);
bool (*strman_substrmatch)(const T * searchpat,const T * text);
bool (*strman_matchpat)(T * a,T * b);
bool (*strman_matchpat_i)(T * a,T * b,unsigned int pos_a,unsigned int pos_b);
bool (*strman_matchsymbol0)(const T * str,size_t pos_in_str,const T * symbols);
bool (*strman_matchsymbol1)(const T * str,size_t pos_in_str,const T * symbols0,const T * symbols1);
bool (*strman_matchsymbol2)(const T * str,size_t pos_in_str,const T * symbols0,const T * symbols1,const T * symbols2);
bool (*strman_matchsymbol3)(const T * str,size_t pos_in_str,const T * symbols0,const T * symbols1,const T * symbols2,const T * symbols3);

Internal Pointers

Pointers

char *strman_toupper_str(char *str);
char *strman_tolower_str(char *str);
int strman_compare_cistr(const char *a,const char *b);
bool strman_isprefix_cistr(const char *prefix,const char *str);
bool strman_issubstr_cistr(const char *sub,const char *str);

Pointers (Templates)

T **strman_explode(const T * sep,const T * str);
int strman_explode_count(T ** explosion_parts);
void strman_explode_free(T ** explosion_parts);
int strman_findItem(const T * item,T ** explosion_parts);
T *strman_getItem(int index,T ** explosion_parts);
T **strman_level2_create(int ln,T *** itemlist);
void strman_level2_free(T ** itemlist);
bool strman_level2_replaceItem_realloc(T ** itemlist,const T * old_item,const T * new_item);
bool strman_level2_setItem_realloc(int itemid,T ** itemlist,const T * item);
bool strman_level2_setItem_malloc(int itemid,T ** itemlist,const T * item);
bool strman_level2_addItem_malloc(T ** itemlist,const T * item);
bool strman_level2_freeItem(int itemid,T ** itemlist);
bool strman_nvlist_create(T *** names,T *** values,int ln);
void strman_nvlist_free(T ** names,T ** values);
bool strman_nvlist_add(T ** names,T ** values,const T * item_name);
bool strman_nvlist_add_if_missing(T ** names,T ** values,const T * item_name);
bool strman_nvlist_remove(T ** names,T ** values,const T * item_name);
T *strman_nvlist_get(T ** names,T ** values,const T * item_name);
bool strman_nvlist_set(T ** names,T ** values,const T * item_name,const T * item_value);
void strman_nvlist_print_all(T ** names,T ** values);
T *strman_nullconcat(T * a,T * b);
T *strman_nullcopy(T * a,T * b);
T *strman_nullcopy_new(T ** a,T * b);
bool strman_isprefix(const T * a,const T * b);
bool strman_issuffix(const T * a,const T * b);
bool strman_issubstr(const T * a,const T * b);
unsigned int strman_findsubstr(const T * a,const T * b);
bool strman_substrmatch(const T * searchpat,const T * text);
bool strman_matchpat(T * a,T * b);
bool strman_matchpat_i(T * a,T * b,unsigned int pos_a,unsigned int pos_b);
bool strman_matchsymbol0(const T * str,size_t pos_in_str,const T * symbols);
bool strman_matchsymbol1(const T * str,size_t pos_in_str,const T * symbols0,const T * symbols1);
bool strman_matchsymbol2(const T * str,size_t pos_in_str,const T * symbols0,const T * symbols1,const T * symbols2);
bool strman_matchsymbol3(const T * str,size_t pos_in_str,const T * symbols0,const T * symbols1,const T * symbols2,const T * symbols3);

Build Log

--------------------------------------------------------------------------------
strman -- Fr Jän  3 16:50:38 CET 2020
--------------------------------------------------------------------------------
ERROR: Fehler beim öffnen der Datei files.def.
Fehlernummer: 2
-------------------------------------------------------------------------------
> install headers
-------------------------------------------------------------------------------
Executable for Linux/[local system] (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Executable for Windows/[local system] (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/[local system] (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Windows/[local system] (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/[local system] (LIB)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Windows/[local system] (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/[local system])
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Windows/[local system])
[compiling] [end]
------------------------------------------------------------------------------- Executable for Linux/32bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Executable for Windows/32bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/32bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Windows/32bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/32bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Windows/32bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/32bit)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Windows/32bit)
[compiling] [end]
------------------------------------------------------------------------------- Executable for Linux/64bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Executable for Windows/64bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/64bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Windows/64bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/64bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Windows/64bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/64bit)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Windows/64bit)
[compiling] [end]
------------------------------------------------------------------------------- > test_all ------------------------------------------------------------------------------- > prepare cp: der Aufruf von stat für '../docu/man/' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > install creating /opt/prokee/system/reg/dllinfo/strman.v01.info ... license=1 | version=1 | library=libstrman.v01 creating /opt/prokee/system/reg/dllinfo/strman.info ... license=1 | version=1 | library=libstrman.v01 ------------------------------------------------------------------------------- > module ------------------------------------------------------------------------------- > exepack ------------------------------------------------------------------------------- > sourcepack ------------------------------------------------------------------------------- > cleanup ------------------------------------------------------------------------------- > webexport -------------------------------------------------------------------------------- FERTIG --------------------------------------------------------------------------------

Copyright © 2017 - 2019 by Andreas Pollhammer